simple-triplestore 0.1.1

A simple graph database for storing triples with support for custom node and edge properties.
Documentation
1
2
3
4
5
6
use super::IdType;

pub trait IdGenerator<Id: IdType> {
    fn clone(&self) -> Box<dyn IdGenerator<Id>>;
    fn fresh(&mut self) -> Id;
}