memtable-core 0.1.0

Core library that provides table data structures
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
mod make;

pub use make::array::{default_array, make_array};
pub use make::table_array::{default_table_array, make_table_array};

#[cfg(feature = "serde-1")]
mod ser;

#[cfg(feature = "serde-1")]
pub use ser::{serialize_array, serialize_table_array, serialize_vec_array};

#[cfg(feature = "serde-1")]
mod de;

#[cfg(feature = "serde-1")]
pub use de::{deserialize_array, deserialize_table_array, deserialize_vec_array};