Module trie_cursor
Available on crate feature
trie
only.Expand description
The cursor implementations for navigating account and storage tries.
Modules§
- depth_
first - Depth-first trie iterator.
- noop
- Noop trie cursor implementations.
- subnode
- Cursor for iterating over a subtrie.
Structs§
- Cursor
SubNode - Cursor for iterating over a subtrie.
- Depth
First Trie Iterator - An iterator that traverses trie nodes in depth-first post-order.
- InMemory
Trie Cursor - A cursor to iterate over trie updates and corresponding database entries. It will always give precedence to the data from the trie updates.
- InMemory
Trie Cursor Factory - The trie cursor factory for the trie updates.
Traits§
- Trie
Cursor - A cursor for traversing stored trie nodes. The cursor must iterate over keys in lexicographical order.
- Trie
Cursor Factory - Factory for creating trie cursors.