Skip to main content

nimiq_database/traits/
mod.rs

1mod cursor;
2mod database;
3mod table;
4mod transaction;
5
6pub use cursor::*;
7pub use database::*;
8pub use table::*;
9pub use transaction::*;
10
11pub type Row<T> = (<T as Table>::Key, <T as Table>::Value);
12pub type DupSubKey<T> = <<T as Table>::Value as DupTableValue>::SubKey;