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

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

Notable traits for Iterator

impl Iterator for Iterator type Item = (Vec<u8>, Vec<u8>);
; }

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

Required methods

fn iter(&'a self, options: ReadOptions<'a>) -> Iterator

Notable traits for Iterator

impl Iterator for Iterator type Item = (Vec<u8>, Vec<u8>);

Return an Iterator iterating over (Key,Value) pairs

Loading content...

Implementors

impl<'a> Iterable<'a> for Snapshot<'a>[src]

impl<'a> Iterable<'a> for Database[src]

Loading content...