Enum theban_db::dberror::DBError []

pub enum DBError {
    Protocol(String),
    FileFormat(String),
    ParseString(String),
    ParseValue(ValueReadError),
    SendValue(ValueWriteError),
    UTF8(FromUtf8Error),
    IO(Error),
}

Variants

Trait Implementations

impl Debug for DBError
[src]

Formats the value using the given formatter.

impl Display for DBError

Formats the value using the given formatter. Read more

impl Error for DBError

A short description of the error. Read more

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

impl From<ValueReadError> for DBError

Performs the conversion.

impl From<ValueWriteError> for DBError

Performs the conversion.

impl From<FromUtf8Error> for DBError

Performs the conversion.

impl From<Error> for DBError

Performs the conversion.