Trait trie_db::TrieIterator
source · pub trait TrieIterator<L: TrieLayout>: Iterator {
// Required method
fn seek(&mut self, key: &[u8]) -> Result<(), TrieHash<L>, CError<L>>;
}
Expand description
A trie iterator that also supports random access (seek()
).