pub struct TupleWrapper2<T0, T1>(pub T0, pub T1);

Tuple Fields§

§0: T0§1: T1

Trait Implementations§

source§

impl<T0: Into<JsValue>, T1: Into<JsValue>> ReturnWasmAbi for TupleWrapper2<T0, T1>

§

type Abi = <JsValue as IntoWasmAbi>::Abi

Same as IntoWasmAbi::Abi
source§

fn return_abi(self) -> Self::Abi

Same as IntoWasmAbi::into_abi, except that it may throw and never return in the case of Err.
source§

impl<T0, T1> WasmDescribe for TupleWrapper2<T0, T1>

source§

impl<T0: WasmAbi, T1: WasmAbi> WasmAbi for TupleWrapper2<T0, T1>

Auto Trait Implementations§

§

impl<T0, T1> RefUnwindSafe for TupleWrapper2<T0, T1>where T0: RefUnwindSafe, T1: RefUnwindSafe,

§

impl<T0, T1> Send for TupleWrapper2<T0, T1>where T0: Send, T1: Send,

§

impl<T0, T1> Sync for TupleWrapper2<T0, T1>where T0: Sync, T1: Sync,

§

impl<T0, T1> Unpin for TupleWrapper2<T0, T1>where T0: Unpin, T1: Unpin,

§

impl<T0, T1> UnwindSafe for TupleWrapper2<T0, T1>where T0: UnwindSafe, T1: UnwindSafe,

Blanket Implementations§

source§

impl<T> Any for Twhere T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for Twhere T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for Twhere T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T, U> Into<U> for Twhere U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<T, U> TryFrom<U> for Twhere U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for Twhere U: TryFrom<T>,

§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.