Enum reql::error::AvailabilityError []

pub enum AvailabilityError {
    OpFailed(String),
    OpIndeterminate(String),
}

A server in the cluster is unavailable

The parent class of OpFailedError and OpIndeterminateError. Programs may use this to catch any availability error, but the server will always return one of this class’s children.

Variants

Trait Implementations

impl Debug for AvailabilityError
[src]

Formats the value using the given formatter.

impl Display for AvailabilityError

Formats the value using the given formatter.

impl Error for AvailabilityError

A short description of the error. Read more

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