pub trait Args {
// Required methods
fn into_stack(self, stack: &mut Stack) -> Result<(), VmError>;
fn try_into_vec(self) -> Result<Vec<Value>, VmError>;
fn count(&self) -> usize;
}Expand description
Trait for converting arguments onto the stack.