Struct ink_env::call::ExecutionInput
source · pub struct ExecutionInput<Args> { /* private fields */ }
Expand description
The input data for a smart contract execution.
Implementations§
source§impl ExecutionInput<EmptyArgumentList>
impl ExecutionInput<EmptyArgumentList>
sourcepub fn push_arg<T>(
self,
arg: T,
) -> ExecutionInput<ArgumentList<Argument<T>, EmptyArgumentList>>where
T: Encode,
pub fn push_arg<T>(
self,
arg: T,
) -> ExecutionInput<ArgumentList<Argument<T>, EmptyArgumentList>>where
T: Encode,
Pushes an argument to the execution input.
source§impl<Head, Rest> ExecutionInput<ArgumentList<Argument<Head>, Rest>>
impl<Head, Rest> ExecutionInput<ArgumentList<Argument<Head>, Rest>>
sourcepub fn push_arg<T>(
self,
arg: T,
) -> ExecutionInput<ArgsList<T, ArgsList<Head, Rest>>>where
T: Encode,
pub fn push_arg<T>(
self,
arg: T,
) -> ExecutionInput<ArgsList<T, ArgsList<Head, Rest>>>where
T: Encode,
Pushes an argument to the execution input.
source§impl<Args> ExecutionInput<Args>
impl<Args> ExecutionInput<Args>
sourcepub fn update_selector(&mut self, selector: Selector)
pub fn update_selector(&mut self, selector: Selector)
Modify the selector.
Useful when using the ExecutionInput
generated as part of the
ContractRef
, but using a custom selector.
Trait Implementations§
source§impl<Args: Clone> Clone for ExecutionInput<Args>
impl<Args: Clone> Clone for ExecutionInput<Args>
source§fn clone(&self) -> ExecutionInput<Args>
fn clone(&self) -> ExecutionInput<Args>
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<Args: Debug> Debug for ExecutionInput<Args>
impl<Args: Debug> Debug for ExecutionInput<Args>
source§impl<Args: Default> Default for ExecutionInput<Args>
impl<Args: Default> Default for ExecutionInput<Args>
source§fn default() -> ExecutionInput<Args>
fn default() -> ExecutionInput<Args>
Returns the “default value” for a type. Read more
source§impl<Args> Encode for ExecutionInput<Args>where
Args: Encode,
impl<Args> Encode for ExecutionInput<Args>where
Args: Encode,
source§fn size_hint(&self) -> usize
fn size_hint(&self) -> usize
If possible give a hint of expected size of the encoding. Read more
source§fn encode_to<O: Output + ?Sized>(&self, output: &mut O)
fn encode_to<O: Output + ?Sized>(&self, output: &mut O)
Convert self to a slice and append it to the destination.
§fn using_encoded<R, F>(&self, f: F) -> R
fn using_encoded<R, F>(&self, f: F) -> R
Convert self to a slice and then invoke the given closure with it.
§fn encoded_size(&self) -> usize
fn encoded_size(&self) -> usize
Calculates the encoded size. Read more
Auto Trait Implementations§
impl<Args> Freeze for ExecutionInput<Args>where
Args: Freeze,
impl<Args> RefUnwindSafe for ExecutionInput<Args>where
Args: RefUnwindSafe,
impl<Args> Send for ExecutionInput<Args>where
Args: Send,
impl<Args> Sync for ExecutionInput<Args>where
Args: Sync,
impl<Args> Unpin for ExecutionInput<Args>where
Args: Unpin,
impl<Args> UnwindSafe for ExecutionInput<Args>where
Args: 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§default unsafe fn clone_to_uninit(&self, dst: *mut T)
default unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)§impl<T> SaturatedConversion for T
impl<T> SaturatedConversion for T
§fn saturated_from<T>(t: T) -> Selfwhere
Self: UniqueSaturatedFrom<T>,
fn saturated_from<T>(t: T) -> Selfwhere
Self: UniqueSaturatedFrom<T>,
§fn saturated_into<T>(self) -> Twhere
Self: UniqueSaturatedInto<T>,
fn saturated_into<T>(self) -> Twhere
Self: UniqueSaturatedInto<T>,
Consume self to return an equivalent value of
T
. Read more§impl<T, S> UniqueSaturatedInto<T> for S
impl<T, S> UniqueSaturatedInto<T> for S
§fn unique_saturated_into(self) -> T
fn unique_saturated_into(self) -> T
Consume self to return an equivalent value of
T
.