pub type ColumnList = SmallVec<[Identifier; 8]>;Expand description
A list of columns optimized for typical use cases (1-8 columns).
Uses SmallVec to store up to 8 identifiers on the stack,
only heap-allocating for larger lists.
Aliased Typeยง
pub struct ColumnList { /* private fields */ }