pub struct Vec<T0, T1> {
pub x: T0,
pub y: T1,
}Expand description
The generic type corresponding to Vec.
Fields§
§x: T0§y: T1Trait Implementations§
Source§impl<___E, T0, T1> Encode<Vec, ___E> for Vec<T0, T1>where
___E: InternalHandleEncoder + ?Sized,
T0: Encode<Int32, ___E>,
T1: Encode<Int32, ___E>,
impl<___E, T0, T1> Encode<Vec, ___E> for Vec<T0, T1>where
___E: InternalHandleEncoder + ?Sized,
T0: Encode<Int32, ___E>,
T1: Encode<Int32, ___E>,
Auto Trait Implementations§
impl<T0, T1> Freeze for Vec<T0, T1>
impl<T0, T1> RefUnwindSafe for Vec<T0, T1>where
T0: RefUnwindSafe,
T1: RefUnwindSafe,
impl<T0, T1> Send for Vec<T0, T1>
impl<T0, T1> Sync for Vec<T0, T1>
impl<T0, T1> Unpin for Vec<T0, T1>
impl<T0, T1> UnsafeUnpin for Vec<T0, T1>where
T0: UnsafeUnpin,
T1: UnsafeUnpin,
impl<T0, T1> UnwindSafe for Vec<T0, T1>where
T0: UnwindSafe,
T1: UnwindSafe,
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
§impl<T> InstanceFromServiceTransport<T> for T
impl<T> InstanceFromServiceTransport<T> for T
§fn from_service_transport(handle: T) -> T
fn from_service_transport(handle: T) -> T
Converts the given service transport handle of type
T to [Self]