pub trait FixedArgs<const N: usize> {
// Required method
fn into_array(self) -> VmResult<[Value; N]>;
}
Expand description
Trait for converting arguments into an array.
Required Methods§
Sourcefn into_array(self) -> VmResult<[Value; N]>
fn into_array(self) -> VmResult<[Value; N]>
Encode arguments as array.