pub trait FromU32Array<const L: usize> {
// Required method
fn from_u32_array(arr: &[u32; L]) -> Self;
}Expand description
Creates a Self from a constant u32 array.
Required Methods§
Sourcefn from_u32_array(arr: &[u32; L]) -> Self
fn from_u32_array(arr: &[u32; L]) -> Self
Creates a primitive type from an big-endian array of u32’s
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.