Enum redis_async::error::Error [−][src]
pub enum Error { Internal(String), IO(Error), RESP(String, Option<RespValue>), Remote(String), EndOfStream, Unexpected(String), }
Variants
Internal(String)
A non-specific internal error that prevented an operation from completing
IO(Error)
An IO error occurred
RESP(String, Option<RespValue>)
A RESP parsing/serialising error occurred
Remote(String)
A remote error
EndOfStream
End of stream - a connection is broken, or could not be established in the first place
Unexpected(String)
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]
impl Debug for Error
fn fmt(&self, f: &mut Formatter) -> Result
[src]
fn fmt(&self, f: &mut Formatter) -> Result
Formats the value using the given formatter. Read more
impl From<Error> for Error
[src]
impl From<Error> for Error
impl From<Canceled> for Error
[src]
impl From<Canceled> for Error
impl<T: 'static + Send> From<SendError<T>> for Error
[src]
impl<T: 'static + Send> From<SendError<T>> for Error
impl Error for Error
[src]
impl Error for Error
fn description(&self) -> &str
[src]
fn description(&self) -> &str
This method is soft-deprecated. Read more
fn cause(&self) -> Option<&Error>
[src]
fn cause(&self) -> Option<&Error>
The lower-level cause of this error, if any. Read more
impl Display for Error
[src]
impl Display for Error