pub type InlineVec<T, const N: usize> = Vec<T, Inline<N>>;
A vector which stores its contained data inline, using no external allocation.
pub struct InlineVec<T, const N: usize> { /* private fields */ }