Enum redis_client::errors::RedisError [] [src]

pub enum RedisError {
    Io(Error),
    Utf8(Utf8Error),
    ParseInt(ParseIntError),
    Parse(ParsingError),
    Response(String),
    MpscRecv(RecvError),
    MpscSendBytes(SendError<(SenderType, u32, Vec<u8>)>),
    MpscSendPubSubBytes(SendError<(PubSubType, u32, Vec<u8>)>),
    MpscTryRecv(TryRecvError),
}

Variants

Trait Implementations

impl Debug for RedisError
[src]

Formats the value using the given formatter.

impl Clone for RedisError
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Display for RedisError
[src]

Formats the value using the given formatter. Read more

impl Error for RedisError
[src]

A short description of the error. Read more

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

impl From<Error> for RedisError
[src]

Performs the conversion.

impl From<Utf8Error> for RedisError
[src]

Performs the conversion.

impl From<ParseIntError> for RedisError
[src]

Performs the conversion.

impl From<ParsingError> for RedisError
[src]

Performs the conversion.

impl From<String> for RedisError
[src]

Performs the conversion.

impl From<RecvError> for RedisError
[src]

Performs the conversion.

impl From<SendError<(SenderType, u32, Vec<u8>)>> for RedisError
[src]

Performs the conversion.

impl From<SendError<(PubSubType, u32, Vec<u8>)>> for RedisError
[src]

Performs the conversion.

impl From<TryRecvError> for RedisError
[src]

Performs the conversion.