Skip to main content

Crate packed

Crate packed 

Source
Expand description

Memory-efficient collections optimized for dynamically sized types.

Structs§

Iter
PackedMap
A map with keys stored in a sorted PackedVec<K> and values in a Vec<V>.
PackedMapBuilder
A builder for PackedMap that allows incrementally appending potentially unsorted key-value pairs.
PackedVec
A packed vector that stores slices of an element type in a single contiguous buffer.

Traits§

PackedItem
A trait for types that can be packed into a single contiguous buffer of bytes.