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 */
}
pub type Array<T, const N: usize> = FixedArray<T, N>;
A fixed sized array defined at compile time. The size of the array is public.
#[repr(C)]
pub union Array<T, const N: usize> {
/* private fields */
}