Struct ink_env::call::utils::ArgumentList
source · pub struct ArgumentList<Head, Rest> { /* private fields */ }
Expand description
An argument list.
This type is constructed mainly at compile type via type constructions to avoid having to allocate heap memory while constructing the encoded arguments. The potentially heap allocating encoding is done right at the end where we can leverage the static environmental buffer instead of allocating heap memory.
Implementations§
source§impl ArgumentList<ArgumentListEnd, ArgumentListEnd>
impl ArgumentList<ArgumentListEnd, ArgumentListEnd>
sourcepub fn empty() -> EmptyArgumentList
pub fn empty() -> EmptyArgumentList
Creates a new empty argument list.
sourcepub fn push_arg<T>(self, arg: T) -> ArgumentList<Argument<T>, Self>where
T: Encode,
pub fn push_arg<T>(self, arg: T) -> ArgumentList<Argument<T>, Self>where
T: Encode,
Pushes the first argument to the empty argument list.
source§impl<Head, Rest> ArgumentList<Argument<Head>, Rest>
impl<Head, Rest> ArgumentList<Argument<Head>, Rest>
sourcepub fn push_arg<T>(self, arg: T) -> ArgumentList<Argument<T>, Self>where
T: Encode,
pub fn push_arg<T>(self, arg: T) -> ArgumentList<Argument<T>, Self>where
T: Encode,
Pushes another argument to the argument list.
Trait Implementations§
source§impl<Head: Clone, Rest: Clone> Clone for ArgumentList<Head, Rest>
impl<Head: Clone, Rest: Clone> Clone for ArgumentList<Head, Rest>
source§fn clone(&self) -> ArgumentList<Head, Rest>
fn clone(&self) -> ArgumentList<Head, Rest>
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<Head: Default, Rest: Default> Default for ArgumentList<Head, Rest>
impl<Head: Default, Rest: Default> Default for ArgumentList<Head, Rest>
source§fn default() -> ArgumentList<Head, Rest>
fn default() -> ArgumentList<Head, Rest>
Returns the “default value” for a type. Read more
source§impl<Head, Rest> Encode for ArgumentList<Argument<Head>, Rest>where
Head: Encode,
Rest: Encode,
impl<Head, Rest> Encode for ArgumentList<Argument<Head>, Rest>where
Head: Encode,
Rest: 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<Head, Rest> Freeze for ArgumentList<Head, Rest>
impl<Head, Rest> RefUnwindSafe for ArgumentList<Head, Rest>where
Head: RefUnwindSafe,
Rest: RefUnwindSafe,
impl<Head, Rest> Send for ArgumentList<Head, Rest>
impl<Head, Rest> Sync for ArgumentList<Head, Rest>
impl<Head, Rest> Unpin for ArgumentList<Head, Rest>
impl<Head, Rest> UnwindSafe for ArgumentList<Head, Rest>where
Head: UnwindSafe,
Rest: 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
.