At the moment, we can store arrays ([T; N]) in slice containers. Slice containers absorb variably-sized elements, and to determine an element's size, it keeps a separate storage for index bounds around.
For fixed-length arrays, we could instead use a specialized container that doesn't maintain bounds, since each element would have the same constant length.