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.
pub union Array<T, const N: usize> { /* private fields */ }