klub_stores 0.0.2

Klub database interface
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#[derive(Debug)]
pub enum GraphError {
    ConnectError,
}

impl std::error::Error for GraphError {}

impl std::fmt::Display for GraphError {
    fn fmt(&self, f: &mut std::fmt::Formatter) -> std::fmt::Result {
        match self {
            GraphError::ConnectError => write!(f, "unable to connect to neo4J."),
        }
    }
}