pub type OwnedVecStorage<T, const N: usize> = VecStorageInner<[MaybeUninit<T>; N]>;
Expand description
Implementation of VecStorage
that stores the data in an array [T; N]
whose size is known at compile time.
Aliased Type§
pub struct OwnedVecStorage<T, const N: usize> { /* private fields */ }