[][src]Enum macgyver_lock::MemcacheError

pub enum MemcacheError {
    BadURL(String),
    Io(Error),
    FromUtf8(FromUtf8Error),
    OpensslError(HandshakeError<TcpStream>),
    ParseIntError(ParseIntError),
    ParseFloatError(ParseFloatError),
    ParseBoolError(ParseBoolError),
    ClientError(String),
    ServerError(u16),
}

Stands for errors raised from rust-memcache

Variants

BadURL(String)

Error raised when the provided memcache URL is invalid

Io(Error)

std::io related errors.

FromUtf8(FromUtf8Error)

Error raised when unserialize value data which from memcached to String

OpensslError(HandshakeError<TcpStream>)
ParseIntError(ParseIntError)
ParseFloatError(ParseFloatError)
ParseBoolError(ParseBoolError)
ClientError(String)
ServerError(u16)

Trait Implementations

impl Debug for MemcacheError[src]

impl Display for MemcacheError[src]

impl Error for MemcacheError[src]

impl From<Error> for MemcacheError[src]

impl From<ErrorStack> for MemcacheError[src]

impl From<FromUtf8Error> for MemcacheError[src]

impl From<HandshakeError<TcpStream>> for MemcacheError[src]

impl From<MemcacheError> for LockError[src]

impl From<ParseBoolError> for MemcacheError[src]

impl From<ParseFloatError> for MemcacheError[src]

impl From<ParseIntError> for MemcacheError[src]

impl From<String> for MemcacheError[src]

impl From<u16> for MemcacheError[src]

Auto Trait Implementations

Blanket Implementations

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

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

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

impl<T> From<T> for T[src]

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

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

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

type Error = Infallible

The type returned in the event of a conversion error.

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

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

The type returned in the event of a conversion error.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,