meowstore_bindb 0.1.0

Bindb.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
pub use fixed::Value as Fixed;
pub use dynamic::Value as Dynamic;
pub use indexed_dynamic::Value as IndexedDynamic;
pub use single::Value as Single;
pub use binary_tree::Value as BinaryTree;

pub mod fixed;
pub mod dynamic;
pub mod indexed_dynamic;
pub mod binary_tree;
pub mod single;

#[derive(Clone, Copy, Debug)]
pub enum OpenMode {
    New,
    Existing,
}