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.
Required Methods§
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".