Type Alias InlineVec

Source
pub type InlineVec<T, const N: usize> = Vec<T, Inline<N>>;
Expand description

A vector which stores its contained data inline, using no external allocation.

Aliased Typeยง

pub struct InlineVec<T, const N: usize> { /* private fields */ }