nimiq-database 1.2.1

A LMDB database wrapper with support for volatile storage
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
mod cursor;
mod database;
mod table;
mod transaction;

pub use cursor::*;
pub use database::*;
pub use table::*;
pub use transaction::*;

pub type Row<T> = (<T as Table>::Key, <T as Table>::Value);
pub type DupSubKey<T> = <<T as Table>::Value as DupTableValue>::SubKey;