Expand description
Memory-efficient collections optimized for dynamically sized types.
Structs§
- Iter
- Packed
Map - A map with keys stored in a sorted
PackedVec<K>and values in aVec<V>. - Packed
MapBuilder - A builder for
PackedMapthat allows incrementally appending potentially unsorted key-value pairs. - Packed
Vec - A packed vector that stores slices of an element type in a single contiguous buffer.
Traits§
- Packed
Item - A trait for types that can be packed into a single contiguous buffer of bytes.