Struct dharitri_wasm::types::MultiArg2
source · pub struct MultiArg2<T0, T1>(pub (T0, T1));Tuple Fields§
§0: (T0, T1)Implementations§
Trait Implementations§
source§impl<T0, T1> ContractCallArg for &MultiArg2<T0, T1>where
T0: ContractCallArg,
T1: ContractCallArg,
impl<T0, T1> ContractCallArg for &MultiArg2<T0, T1>where
T0: ContractCallArg,
T1: ContractCallArg,
fn push_dyn_arg<O: DynArgOutput>(&self, output: &mut O)
source§impl<T0, T1> ContractCallArg for MultiArg2<T0, T1>where
T0: ContractCallArg,
T1: ContractCallArg,
impl<T0, T1> ContractCallArg for MultiArg2<T0, T1>where
T0: ContractCallArg,
T1: ContractCallArg,
fn push_dyn_arg<O: DynArgOutput>(&self, output: &mut O)
source§impl<T0, T1> EndpointResult for MultiArg2<T0, T1>where
T0: EndpointResult,
T1: EndpointResult,
impl<T0, T1> EndpointResult for MultiArg2<T0, T1>where
T0: EndpointResult,
T1: EndpointResult,
§type DecodeAs = MultiArg2<T0, T1>
type DecodeAs = MultiArg2<T0, T1>
Indicates how the result of the endpoint can be interpreted when called via proxy.
Self for most types.fn finish<FA>(&self)where
FA: ManagedTypeApi + EndpointFinishApi,
source§impl<T0, T1> TypeAbi for MultiArg2<T0, T1>
impl<T0, T1> TypeAbi for MultiArg2<T0, T1>
fn type_name() -> String
source§fn provide_type_descriptions<TDC: TypeDescriptionContainer>(
accumulator: &mut TDC
)
fn provide_type_descriptions<TDC: TypeDescriptionContainer>( accumulator: &mut TDC )
A type can provide more than its own description.
For instance, a struct can also provide the descriptions of the type of its fields.
TypeAbi doesn’t care for the exact accumulator type,
which is abstracted by the TypeDescriptionContainer trait.
Auto Trait Implementations§
impl<T0, T1> RefUnwindSafe for MultiArg2<T0, T1>where
T0: RefUnwindSafe,
T1: RefUnwindSafe,
impl<T0, T1> Send for MultiArg2<T0, T1>
impl<T0, T1> Sync for MultiArg2<T0, T1>
impl<T0, T1> Unpin for MultiArg2<T0, T1>
impl<T0, T1> UnwindSafe for MultiArg2<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