pub trait AsArray<T, const N: usize> { // Required method fn as_array(&self) -> &[T; N]; }
Reinterpret as array.