bitcoinleveldb-table 0.1.16-alpha.0

abstractions for working with Tables -- a Table is a sorted map from strings to strings. Tables are immutable and persistent. A Table may be safely accessed from multiple threads without external synchronization.
Documentation
1
2
3
4
5
6
7
8
crate::ix!();

//-------------------------------------------[.cpp/bitcoin/src/leveldb/db/db_iter.h]
//-------------------------------------------[.cpp/bitcoin/src/leveldb/db/db_iter.cc]

pub struct LevelDBIterator {
    rep: Rc<RefCell<LevelDBIteratorInner>>,
}