Enum reql::errors::DriverError [] [src]

pub enum DriverError {
    Auth(String),
    Io(IoError),
    Response(ResponseError),
    Json(JsonError),
    Protobuf(ProtobufError),
    Other(String),
}

An error has occurred within the driver

This may be a driver bug, or it may be an unfulfillable command, such as an unserializable query.

Variants

Trait Implementations

impl Debug for DriverError
[src]

Formats the value using the given formatter.

impl Display for DriverError
[src]

Formats the value using the given formatter.

impl Error for DriverError
[src]

A short description of the error. Read more

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

impl From<IoError> for DriverError
[src]

Performs the conversion.

impl From<ResponseError> for DriverError
[src]

Performs the conversion.

impl From<JsonError> for DriverError
[src]

Performs the conversion.

impl From<ProtobufError> for DriverError
[src]

Performs the conversion.