pub trait FixedArgs<const N: usize> {
// Required method
fn into_array(self) -> Result<[Value; N], VmError>;
}Expand description
Trait for converting arguments into an array.
pub trait FixedArgs<const N: usize> {
// Required method
fn into_array(self) -> Result<[Value; N], VmError>;
}Trait for converting arguments into an array.