Trait runestick::Args[][src]

pub trait Args {
    fn into_stack(self, stack: &mut Stack) -> Result<(), VmError>;
fn into_vec(self) -> Result<Vec<Value>, VmError>;
fn count(&self) -> usize; }
Expand description

Trait for converting arguments onto the stack.

Required methods

Encode arguments onto a stack.

Convert arguments into a vector.

The number of arguments.

Implementations on Foreign Types

Implementors