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()).
pub trait TrieIterator<L: TrieLayout>: Iterator {
// Required method
fn seek(&mut self, key: &[u8]) -> Result<(), TrieHash<L>, CError<L>>;
}A trie iterator that also supports random access (seek()).