Trait exonum_leveldb::database::iterator::Iterable [] [src]

pub trait Iterable<'a> {
    fn iter(&'a self, options: ReadOptions<'a>) -> Iterator;
}

A trait to allow access to the three main iteration styles of leveldb.

Required Methods

Return an Iterator iterating over (Key,Value) pairs

Implementors