meshdb-core 0.2.0

Core types for the Mesh graph database
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
pub mod edge;
pub mod error;
pub mod id;
pub mod node;
pub mod property;

pub use edge::Edge;
pub use error::{Error, Result};
pub use id::{EdgeId, NodeId};
pub use node::Node;
pub use property::{
    Duration, Point, Property, SRID_CARTESIAN_2D, SRID_CARTESIAN_3D, SRID_WGS84_2D, SRID_WGS84_3D,
};