[−][src]Struct wasmi::RuntimeArgs
Wrapper around slice of RuntimeValue
for using it
as an argument list conveniently.
Implementations
impl<'a> RuntimeArgs<'a>
[src][−]
pub fn nth_checked<T>(&self, idx: usize) -> Result<T, Trap> where
T: FromRuntimeValue,
[src][−]
T: FromRuntimeValue,
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][−]
T: FromRuntimeValue,
pub fn len(&self) -> usize
[src][−]
Total number of arguments
Trait Implementations
impl<'a> AsRef<[RuntimeValue]> for RuntimeArgs<'a>
[src][+]
impl<'a> Debug for RuntimeArgs<'a>
[src][+]
impl<'a> From<&'a [RuntimeValue]> for RuntimeArgs<'a>
[src][+]
Auto Trait Implementations
impl<'a> RefUnwindSafe for RuntimeArgs<'a>
impl<'a> Send for RuntimeArgs<'a>
impl<'a> Sync for RuntimeArgs<'a>
impl<'a> Unpin for RuntimeArgs<'a>
impl<'a> UnwindSafe for RuntimeArgs<'a>
Blanket Implementations
impl<T> Any for T where
T: 'static + ?Sized,
[src][+]
T: 'static + ?Sized,
impl<T> Borrow<T> for T where
T: ?Sized,
[src][+]
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
[src][+]
T: ?Sized,
impl<T> From<T> for T
[src][+]
impl<T, U> Into<U> for T where
U: From<T>,
[src][+]
U: From<T>,
impl<T, U> TryFrom<U> for T where
U: Into<T>,
[src][+]
U: Into<T>,
impl<T, U> TryInto<U> for T where
U: TryFrom<T>,
[src][+]
U: TryFrom<T>,