Expand description
leveldb iterators
Iteration is one of the most important parts of leveldb. This module provides Iterators to iterate over key, values and pairs of both.
Structs§
- Iterator
- An iterator over the leveldb keyspace.
- KeyIterator
- An iterator over the leveldb keyspace.
- RevIterator
- An iterator over the leveldb keyspace that browses the keys backwards.
- RevKey
Iterator - An iterator over the leveldb keyspace that browses the keys backwards.
- RevValue
Iterator - An iterator over the leveldb keyspace that browses the keys backwards.
- Value
Iterator - An iterator over the leveldb keyspace.
Traits§
- Iterable
- A trait to allow access to the three main iteration styles of leveldb.
- LevelDB
Iterator