logo
pub trait ArraySize<T>: Unsigned {
    type ArrayType: AsRef<[T]> + AsMut<[T]> + IntoArray<T> + Sized;
}
Expand description

Trait which associates a usize size and ArrayType with a typenum-provided Unsigned integer.

Required Associated Types

Array type which corresponds to this size.

Implementations on Foreign Types

Implementors