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()).

Required methods

Position the iterator on the first element with key >= key

Implementors