Enum memcache::MemcacheError [] [src]

pub enum MemcacheError {
    Io(Error),
    FromUtf8(FromUtf8Error),
    Error,
    ClientError(String),
    ServerError(String),
}

Stands for errors raised from rust-memcache

Variants

std::io related errors.

Error raised when unserialize value data which from memcached to String

Unknown error raised by memcached, more detail.

Client side error raised by memcached, probably caused by invalid input, more detail.

Server side error raise by memcached, more detail.

Trait Implementations

impl Debug for MemcacheError
[src]

Formats the value using the given formatter.

impl Display for MemcacheError
[src]

Formats the value using the given formatter.

impl Error for MemcacheError
[src]

A short description of the error. Read more

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

impl From<Error> for MemcacheError
[src]

Performs the conversion.

impl From<FromUtf8Error> for MemcacheError
[src]

Performs the conversion.

impl From<String> for MemcacheError
[src]

Performs the conversion.