Type Alias flex_alloc::vec::InlineVec

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

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

Aliased Type§

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