pub type DataCategories = SmallVec<[DataCategory; 8]>;
Expand description
An efficient container for data categories that avoids allocations.
DataCategories
is a small-vector based collection of DataCategory
values.
It’s optimized for the common case of having only a few categories, avoiding heap
allocations in these scenarios.
Aliased Type§
struct DataCategories { /* private fields */ }