Struct dharitri_wasm::types::MultiArg4
source · pub struct MultiArg4<T0, T1, T2, T3>(pub (T0, T1, T2, T3));Tuple Fields§
§0: (T0, T1, T2, T3)Implementations§
source§impl<T0, T1, T2, T3> MultiArg4<T0, T1, T2, T3>
impl<T0, T1, T2, T3> MultiArg4<T0, T1, T2, T3>
pub fn into_tuple(self) -> (T0, T1, T2, T3)
Trait Implementations§
source§impl<T0, T1, T2, T3> ContractCallArg for &MultiArg4<T0, T1, T2, T3>
impl<T0, T1, T2, T3> ContractCallArg for &MultiArg4<T0, T1, T2, T3>
fn push_dyn_arg<O: DynArgOutput>(&self, output: &mut O)
source§impl<T0, T1, T2, T3> ContractCallArg for MultiArg4<T0, T1, T2, T3>
impl<T0, T1, T2, T3> ContractCallArg for MultiArg4<T0, T1, T2, T3>
fn push_dyn_arg<O: DynArgOutput>(&self, output: &mut O)
source§impl<T0, T1, T2, T3> EndpointResult for MultiArg4<T0, T1, T2, T3>
impl<T0, T1, T2, T3> EndpointResult for MultiArg4<T0, T1, T2, T3>
source§impl<T0, T1, T2, T3> From<(T0, T1, T2, T3)> for MultiArg4<T0, T1, T2, T3>
impl<T0, T1, T2, T3> From<(T0, T1, T2, T3)> for MultiArg4<T0, T1, T2, T3>
source§fn from(tuple: (T0, T1, T2, T3)) -> Self
fn from(tuple: (T0, T1, T2, T3)) -> Self
Converts to this type from the input type.
source§impl<T0, T1, T2, T3> TypeAbi for MultiArg4<T0, T1, T2, T3>
impl<T0, T1, T2, T3> TypeAbi for MultiArg4<T0, T1, T2, T3>
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, T2, T3> RefUnwindSafe for MultiArg4<T0, T1, T2, T3>
impl<T0, T1, T2, T3> Send for MultiArg4<T0, T1, T2, T3>
impl<T0, T1, T2, T3> Sync for MultiArg4<T0, T1, T2, T3>
impl<T0, T1, T2, T3> Unpin for MultiArg4<T0, T1, T2, T3>
impl<T0, T1, T2, T3> UnwindSafe for MultiArg4<T0, T1, T2, T3>
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