marsdb-graph 0.8.0

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

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