[][src]Struct susy_wasmi::RuntimeArgs

pub struct RuntimeArgs<'a>(_);

Wrapper around slice of RuntimeValue for using it as an argument list conveniently.

Methods

impl<'a> RuntimeArgs<'a>[src]

pub fn nth_checked<T>(&self, idx: usize) -> Result<T, Trap> where
    T: FromRuntimeValue
[src]

Extract argument by index idx.

Errors

Returns Err if cast is invalid or not enough arguments.

pub fn nth_value_checked(&self, idx: usize) -> Result<RuntimeValue, Trap>[src]

Extract argument as a RuntimeValue by index idx.

Errors

Returns Err if this list has not enough arguments.

pub fn nth<T>(&self, idx: usize) -> T where
    T: FromRuntimeValue
[src]

Extract argument by index idx.

Panics

Panics if cast is invalid or not enough arguments.

pub fn len(&self) -> usize[src]

Total number of arguments

Trait Implementations

impl<'a> AsRef<[RuntimeValue]> for RuntimeArgs<'a>[src]

impl<'a> From<&'a [RuntimeValue]> for RuntimeArgs<'a>[src]

impl<'a> Debug for RuntimeArgs<'a>[src]

Auto Trait Implementations

impl<'a> Send for RuntimeArgs<'a>

impl<'a> Sync for RuntimeArgs<'a>

Blanket Implementations

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]