Enum rusted_cypher::error::GraphError []

pub enum GraphError {
    Neo4j(Vec<Neo4jError>),
    Statement(String),
    Transaction(String),
    Io(Error),
    FromUtf8(FromUtf8Error),
    UrlParse(ParseError),
    Hyper(Error),
    Serde(Error),
    TimeParse(ParseError),
    SemVer(SemVerError),
    Other(String),
}

Variants

Trait Implementations

impl Debug for GraphError
[src]

Formats the value using the given formatter.

impl Display for GraphError

Formats the value using the given formatter. Read more

impl Error for GraphError

A short description of the error. Read more

The lower-level cause of this error, if any. Read more

impl From<Vec<Neo4jError>> for GraphError

Performs the conversion.

impl From<Error> for GraphError

Performs the conversion.

impl From<FromUtf8Error> for GraphError

Performs the conversion.

impl From<ParseError> for GraphError

Performs the conversion.

impl From<Error> for GraphError

Performs the conversion.

impl From<Error> for GraphError

Performs the conversion.

impl From<ParseError> for GraphError

Performs the conversion.

impl From<SemVerError> for GraphError

Performs the conversion.

impl From<String> for GraphError

Performs the conversion.