Enum memcache::MemcacheError[][src]

pub enum MemcacheError {
    Io(Error),
    FromUtf8(FromUtf8Error),
    ParseIntError(ParseIntError),
    ParseFloatError(ParseFloatError),
    ParseBoolError(ParseBoolError),
    ClientError(String),
    ServerError(u16),
}

Stands for errors raised from rust-memcache

Variants

std::io related errors.

Error raised when unserialize value data which from memcached to String

Trait Implementations

impl Debug for MemcacheError
[src]

Formats the value using the given formatter. Read more

impl Display for MemcacheError
[src]

Formats the value using the given formatter. Read more

impl Error for MemcacheError
[src]

This method is soft-deprecated. 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<ParseIntError> for MemcacheError
[src]

Performs the conversion.

impl From<ParseFloatError> for MemcacheError
[src]

Performs the conversion.

impl From<ParseBoolError> for MemcacheError
[src]

Performs the conversion.

impl From<String> for MemcacheError
[src]

Performs the conversion.

impl From<u16> for MemcacheError
[src]

Performs the conversion.

Auto Trait Implementations