Trait trie_db::TrieIterator
source · [−]pub trait TrieIterator<H: Hasher, C: NodeCodec<H>>: Iterator {
fn seek(
&mut self,
key: &[u8]
) -> Result<(), H::Out, <C as NodeCodec<H>>::Error>;
}
Expand description
A trie iterator that also supports random access (seek()
).