Enum reql::error::ConnectionError []

pub enum ConnectionError {
    Initialization(InitializationError),
    Timeout(GetTimeout),
    Io(Error),
    Other(String),
}

Connection related errors

Variants

Trait Implementations

impl Debug for ConnectionError
[src]

Formats the value using the given formatter.

impl Display for ConnectionError

Formats the value using the given formatter.

impl Error for ConnectionError

A short description of the error. Read more

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

impl From<InitializationError> for ConnectionError

Performs the conversion.

impl From<GetTimeout> for ConnectionError

Performs the conversion.

impl From<Error> for ConnectionError

Performs the conversion.