Struct dharitri_wasm::types::IgnoreVarArgs
source · pub struct IgnoreVarArgs;Expand description
Structure that allows taking a variable number of arguments, but does nothing with them, not even deserialization.
Trait Implementations§
source§impl Clone for IgnoreVarArgs
impl Clone for IgnoreVarArgs
source§fn clone(&self) -> IgnoreVarArgs
fn clone(&self) -> IgnoreVarArgs
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moresource§impl ContractCallArg for &IgnoreVarArgs
impl ContractCallArg for &IgnoreVarArgs
fn push_dyn_arg<O: DynArgOutput>(&self, _output: &mut O)
source§impl ContractCallArg for IgnoreVarArgs
impl ContractCallArg for IgnoreVarArgs
fn push_dyn_arg<O: DynArgOutput>(&self, _output: &mut O)
source§impl Default for IgnoreVarArgs
impl Default for IgnoreVarArgs
source§fn default() -> IgnoreVarArgs
fn default() -> IgnoreVarArgs
Returns the “default value” for a type. Read more
source§impl DynArg for IgnoreVarArgs
impl DynArg for IgnoreVarArgs
source§impl EndpointResult for IgnoreVarArgs
impl EndpointResult for IgnoreVarArgs
§type DecodeAs = IgnoreVarArgs
type DecodeAs = IgnoreVarArgs
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 TypeAbi for IgnoreVarArgs
impl TypeAbi for IgnoreVarArgs
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 RefUnwindSafe for IgnoreVarArgs
impl Send for IgnoreVarArgs
impl Sync for IgnoreVarArgs
impl Unpin for IgnoreVarArgs
impl UnwindSafe for IgnoreVarArgs
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