Expand description
Merklized key-value store.
Modules§
Structs§
- LogEntry
- An entry in the write log, describing a single update.
- Node
Pointer - A pointer to a node in the tree.
- Overlay
Tree - A key-value tree overlay that holds all updates in memory and only commits them if requested. This can be used to create snapshots that can be discarded.
- Prefix
- A key prefix.
- Root
- Storage root.
- Tree
- A patricia tree-based MKVS implementation.
Enums§
- LogEntry
Kind - The type of entry in the log.
- NodeBox
- A box type that can contain either internal or leaf nodes.
- Root
Type - Storage root type.
Traits§
- FallibleMKVS
- Merklized key-value store where methods return errors instead of panicking.
- ImmutableMKVS
- Immutable merkalized key value store.
- Iterator
- An MKVS iterator.
- MKVS
- Merklized key-value store.
Type Aliases§
- Depth
- Key
- Node
PtrRef - A reference-counted pointer to a pointer.
- Write
Log - The write log.