[][src]Enum memcache::MemcacheError

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

Io(Error)

std::io related errors.

FromUtf8(FromUtf8Error)

Error raised when unserialize value data which from memcached to String

ParseIntError(ParseIntError)ParseFloatError(ParseFloatError)ParseBoolError(ParseBoolError)ClientError(String)ServerError(u16)

Trait Implementations

impl From<Error> for MemcacheError[src]

impl From<FromUtf8Error> for MemcacheError[src]

impl From<ParseIntError> for MemcacheError[src]

impl From<ParseFloatError> for MemcacheError[src]

impl From<ParseBoolError> for MemcacheError[src]

impl From<String> for MemcacheError[src]

impl From<u16> for MemcacheError[src]

impl Display for MemcacheError[src]

impl Debug for MemcacheError[src]

impl Error for MemcacheError[src]

fn cause(&self) -> Option<&dyn Error>
1.0.0
[src]

Deprecated since 1.33.0:

replaced by Error::source, which can support downcasting

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

Auto Trait Implementations

Blanket Implementations

impl<T> From for T[src]

impl<T, U> Into for T where
    U: From<T>, 
[src]

impl<T> ToString for T where
    T: Display + ?Sized
[src]

impl<T, U> TryFrom for T where
    U: Into<T>, 
[src]

type Error = !

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

impl<T> Borrow for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> BorrowMut for T where
    T: ?Sized
[src]

impl<T, U> TryInto for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.