simple-triplestore 0.1.1

A simple graph database for storing triples with support for custom node and edge properties.
Documentation
1
2
3
// Marker trait for all types which are supported as TripleStore properties.
pub trait Property: Clone + std::fmt::Debug + PartialEq {}
impl<T: Clone + std::fmt::Debug + PartialEq> Property for T {}