bindb/storage.rs
1pub use fixed::Value as Fixed;
2pub use dynamic::Value as Dynamic;
3pub use indexed_dynamic::Value as IndexedDynamic;
4pub use single::Value as Single;
5pub use binary_tree::Value as BinaryTree;
6
7pub mod fixed;
8pub mod dynamic;
9pub mod indexed_dynamic;
10pub mod binary_tree;
11pub mod single;
12
13#[derive(Clone, Copy, Debug)]
14pub enum OpenMode {
15 New,
16 Existing,
17}