Type Alias Array

Source
pub type Array<T, const N: usize> = FixedArray<T, N>;
Expand description

A fixed sized array defined at compile time. The size of the array is public.

Aliased Typeยง

#[repr(C)]
pub union Array<T, const N: usize> {
    /* private fields */
}