Enum reql::error::ReqlError [] [src]

pub enum ReqlError {
    Compile(ReqlCompileError),
    Runtime(ReqlRuntimeError),
    Driver(ReqlDriverError),
}

The most generic error message in ReQL

Variants

Compile(ReqlCompileError)Runtime(ReqlRuntimeError)Driver(ReqlDriverError)

Trait Implementations

impl Debug for ReqlError
[src]

fn fmt(&self, __arg_0: &mut Formatter) -> Result

Formats the value using the given formatter.

impl From<ReqlCompileError> for ReqlError
[src]

fn from(err: ReqlCompileError) -> ReqlError

Performs the conversion.

impl From<ReqlRuntimeError> for ReqlError
[src]

fn from(err: ReqlRuntimeError) -> ReqlError

Performs the conversion.

impl From<ReqlDriverError> for ReqlError
[src]

fn from(err: ReqlDriverError) -> ReqlError

Performs the conversion.