Enum bmemcached::errors::BMemcachedError [] [src]

pub enum BMemcachedError {
    IoError(Error),
    Utf8Error(FromUtf8Error),
    UnkownError(&'static str),
    Status(Status),
    TypeMismatch(StoredType),
}

Variants

In case you tried to coerse to a value that does not match with the stored. The returned flags are inside the error.

Trait Implementations

impl Debug for BMemcachedError
[src]

Formats the value using the given formatter.

impl From<Error> for BMemcachedError
[src]

Performs the conversion.

impl From<FromUtf8Error> for BMemcachedError
[src]

Performs the conversion.