Structsยง
- Deserializer ๐Deserializer for deserializing a hash key into datums.
- The implementation of the hash key.
- Key storage that uses a in-heap buffer and key, backed by a boxed slice.
- Serializer ๐Serializer for building a hash key from datums on the specified storage.
- The buffer for building a hash key on a fixed-size byte array on the stack.
- Key storage that uses a on-stack buffer and key, backed by a byte array with length
N
.
Traitsยง
- Associated type for
KeyStorage
used to build the hash key. - Trait for different kinds of hash keys.
- The storage where the hash key resides in memory.