Type Definition ink_env::call::utils::EmptyArgumentList[][src]

type EmptyArgumentList = ArgumentList<ArgumentListEnd, ArgumentListEnd>;

An empty argument list.

Implementations

impl EmptyArgumentList[src]

pub fn empty() -> EmptyArgumentList[src]

Creates a new empty argument list.

pub fn push_arg<T>(self, arg: T) -> ArgumentList<Argument<T>, Self> where
    T: Encode
[src]

Pushes the first argument to the empty argument list.

Trait Implementations

impl Encode for EmptyArgumentList[src]