Module trie_cursor

Module trie_cursor 

Available on crate feature trie only.
Expand description

The cursor implementations for navigating account and storage tries.

Modules§

noop
Noop trie cursor implementations.
subnode
Cursor for iterating over a subtrie.

Structs§

CursorSubNode
Cursor for iterating over a subtrie.
InMemoryAccountTrieCursor
The cursor to iterate over account trie updates and corresponding database entries. It will always give precedence to the data from the trie updates.
InMemoryStorageTrieCursor
The cursor to iterate over storage trie updates and corresponding database entries. It will always give precedence to the data from the trie updates.
InMemoryTrieCursorFactory
The trie cursor factory for the trie updates.

Traits§

TrieCursor
A cursor for traversing stored trie nodes. The cursor must iterate over keys in lexicographical order.
TrieCursorFactory
Factory for creating trie cursors.