Enum reql::error::Error []

pub enum Error {
    Compile(String),
    Runtime(RuntimeError),
    Driver(DriverError),
}

The most generic error message in ReQL

Variants

Trait Implementations

impl Debug for Error
[src]

Formats the value using the given formatter.

impl Display for Error

Formats the value using the given formatter.

impl Error for Error

A short description of the error. Read more

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

impl From<RuntimeError> for Error

Performs the conversion.

impl From<DriverError> for Error

Performs the conversion.

impl From<InitializationError> for Error
[src]

Converts from r2d2 error

Performs the conversion.

impl From<GetTimeout> for Error
[src]

Performs the conversion.

impl From<ConnectionError> for Error
[src]

Performs the conversion.

impl From<ResponseError> for Error
[src]

Performs the conversion.

impl<T, E> From<SendError<T, E>> for Error
[src]

Performs the conversion.

impl From<AvailabilityError> for Error
[src]

Performs the conversion.

impl From<Error> for Error
[src]

Converts from IO error

Performs the conversion.

impl From<Utf8Error> for Error
[src]

Converts from Utf8Error error

Performs the conversion.

impl From<Error> for Error
[src]

Converts from serde_json error

Performs the conversion.

impl From<ProtobufError> for Error
[src]

Performs the conversion.

impl From<ScramError> for Error
[src]

Performs the conversion.