Trait patricia_trie::TrieIterator [] [src]

pub trait TrieIterator: Iterator {
    fn seek(&mut self, key: &[u8]) -> Result<()>;
}

A trie iterator that also supports random access.

Required Methods

Position the iterator on the first element with key > key

Implementors