marsdb-graph 0.3.0

Property graph model and CRUD storage layer used internally by MarsDB.
Documentation
1
2
3
4
5
6
7
8
9
10
11
mod encode;
mod error;
mod id;
mod labels;
mod model;
mod store;

pub use error::GraphError;
pub use marsdb_storage::{ReadTransaction, Txn, WriteTransaction};
pub use model::{AdjEntry, Direction, Edge, EdgeId, Node, NodeId, PropertyValue};
pub use store::GraphStore;