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