logo
pub trait AsArray<T, const N: usize> {
    fn as_array(&self) -> &[T; N];
}
Expand description

Reinterpret as array.

Required Methods

Reinterpret as array.

Implementors