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

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

Variants

IoError
Utf8Error
UnkownError
Status
TypeMismatch

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 From<Error> for BMemcachedError

fn from(err: Error) -> BMemcachedError

impl From<FromUtf8Error> for BMemcachedError

fn from(err: FromUtf8Error) -> BMemcachedError

Derived Implementations

impl Debug for BMemcachedError

fn fmt(&self, __arg_0: &mut Formatter) -> Result