Trait patricia_trie::TrieIterator[][src]

pub trait TrieIterator<H: Hasher, C: NodeCodec<H>>: Iterator {
    fn seek(
        &mut self,
        key: &[u8]
    ) -> Result<(), H::Out, <C as NodeCodec<H>>::Error>; }

A trie iterator that also supports random access (seek()).

Required Methods

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

Implementors