Crate heed_types
source ·Expand description
Types that can be used to serialize and deserialize types inside databases.
Structs
- Encodable version of
i8 - Encodable version of
i16. - Encodable version of
i32. - Encodable version of
i64. - Encodable version of
i128. - Owns bytes that can be decoded on demand.
- Lazily decode the data bytes, it can be used to avoid CPU intensive decoding before making sure we really need to decode it (e.g. based on the key).
- Encodable version of
u8 - Encodable version of
u16. - Encodable version of
u32. - Encodable version of
u64. - Encodable version of
u128.
Enums
- Describes a slice of bytes
[u8]that is totally borrowed and doesn’t depends on any memory alignment. - A convenient struct made to ignore the type when decoding it.
- Describes an
str. - Describes the
()type.