Enum reql::error::ResponseError []

pub enum ResponseError {
    Parse(Utf8Error),
    Db(Value),
}

Response related errors

Variants

Trait Implementations

impl Debug for ResponseError
[src]

Formats the value using the given formatter.

impl Display for ResponseError

Formats the value using the given formatter.

impl Error for ResponseError

A short description of the error. Read more

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

impl From<Utf8Error> for ResponseError

Performs the conversion.

impl From<Value> for ResponseError

Performs the conversion.