Enum redis_async::error::Error [] [src]

pub enum Error {
    Internal(String),
    IO(Error),
    RESP(StringOption<RespValue>),
    Remote(String),
    EndOfStream,
    Unexpected(String),
}

Variants

A non-specific internal error that prevented an operation from completing

An IO error occurred

A RESP parsing/serialising error occurred

A remote error

End of stream - not necesserially an error if you're anticipating it

An unexpected error. In this context "unexpected" means "unexpected because we check ahead of time", it used to maintain the type signature of chains of futures; but it occurring at runtime should be considered a catastrophic failure.

If any error is propagated this way that needs to be handled, then it should be made into a proper option.

Trait Implementations

impl Debug for Error
[src]

[src]

Formats the value using the given formatter. Read more

impl From<Error> for Error
[src]

[src]

Performs the conversion.

impl From<Canceled> for Error
[src]

[src]

Performs the conversion.

impl<T: 'static + Send> From<SendError<T>> for Error
[src]

[src]

Performs the conversion.

impl Error for Error
[src]

[src]

A short description of the error. Read more

[src]

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

impl Display for Error
[src]

[src]

Formats the value using the given formatter. Read more

Auto Trait Implementations

impl Send for Error

impl Sync for Error