pub struct Ts<T>(/* private fields */);Implementations§
Trait Implementations§
Source§impl<T> FromWasmAbi for Ts<T>
impl<T> FromWasmAbi for Ts<T>
Source§impl<T> IntoWasmAbi for Ts<T>
impl<T> IntoWasmAbi for Ts<T>
Source§impl<T> IntoWasmAbi for &Ts<T>
impl<T> IntoWasmAbi for &Ts<T>
Source§impl<T> LongRefFromWasmAbi for Ts<T>
impl<T> LongRefFromWasmAbi for Ts<T>
Source§impl<T> OptionFromWasmAbi for Ts<T>
impl<T> OptionFromWasmAbi for Ts<T>
Source§impl<T> OptionIntoWasmAbi for Ts<T>
impl<T> OptionIntoWasmAbi for Ts<T>
Source§impl<T> RefFromWasmAbi for Ts<T>
impl<T> RefFromWasmAbi for Ts<T>
Source§type Anchor = ManuallyDrop<Ts<T>>
type Anchor = ManuallyDrop<Ts<T>>
The type that holds the reference to
Self for the duration of the
invocation of the function that has an &Self parameter. This is
required to ensure that the lifetimes don’t persist beyond one function
call, and so that they remain anonymous.Source§impl<T> VectorFromWasmAbi for Ts<T>
impl<T> VectorFromWasmAbi for Ts<T>
Source§impl<T> VectorIntoWasmAbi for Ts<T>
impl<T> VectorIntoWasmAbi for Ts<T>
Auto Trait Implementations§
impl<T> Freeze for Ts<T>
impl<T> RefUnwindSafe for Ts<T>where
T: RefUnwindSafe,
impl<T> Send for Ts<T>where
T: Send,
impl<T> Sync for Ts<T>where
T: Sync,
impl<T> Unpin for Ts<T>where
T: Unpin,
impl<T> UnsafeUnpin for Ts<T>
impl<T> UnwindSafe for Ts<T>where
T: 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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> ReturnWasmAbi for Twhere
T: IntoWasmAbi,
impl<T> ReturnWasmAbi for Twhere
T: IntoWasmAbi,
Source§type Abi = <T as IntoWasmAbi>::Abi
type Abi = <T as IntoWasmAbi>::Abi
Same as
IntoWasmAbi::AbiSource§fn return_abi(self) -> <T as ReturnWasmAbi>::Abi
fn return_abi(self) -> <T as ReturnWasmAbi>::Abi
Same as
IntoWasmAbi::into_abi, except that it may throw and never
return in the case of Err.