pub trait ToU32Array<const T: usize> {
// Required method
fn to_u32_array(&self) -> [u32; T];
}Expand description
Converts the specified primitive to a big-endian [[u32;T]]
Required Methods§
Sourcefn to_u32_array(&self) -> [u32; T]
fn to_u32_array(&self) -> [u32; T]
Creates an big-endian array of u32’s from this specified primitive type.