[][src]Enum libaster::com::AsError

pub enum AsError {
    BadConfig(String),
    StrParseIntError(ParseIntError),
    BadMessage,
    BadReqeust,
    RequestNotSupport,
    RequestInlineWithMultiKeys,
    BadReply,
    ProxyFail,
    RequestReachMaxCycle,
    ParseIntError(ParseIntegerError),
    WrongClusterSlotsReplyType,
    WrongClusterSlotsReplySlot,
    ClusterFailDispatch,
    IoError(Error),
    BackendClosedError(String),
    RedirectFailError,
    ClusterAllSeedsDie(String),
    ConfigError(Error),
    SystemError,
    None,
}

Variants

BadConfig(String)
StrParseIntError(ParseIntError)
BadMessage
BadReqeust
RequestNotSupport
RequestInlineWithMultiKeys
BadReply
ProxyFail
RequestReachMaxCycle
ParseIntError(ParseIntegerError)
WrongClusterSlotsReplyType
WrongClusterSlotsReplySlot
ClusterFailDispatch
IoError(Error)
BackendClosedError(String)
RedirectFailError
ClusterAllSeedsDie(String)
ConfigError(Error)
SystemError
None

Trait Implementations

impl<'a> IntoReply<Message> for &'a AsError[src]

impl IntoReply<Message> for AsError[src]

impl IntoReply<Message> for AsError[src]

impl<'a> IntoReply<Message> for &'a AsError[src]

impl<'a> Into<Message> for &'a AsError[src]

impl From<Error> for AsError[src]

impl From<ParseIntegerError> for AsError[src]

impl From<Error> for AsError[src]

impl From<ParseIntError> for AsError[src]

impl From<AsError> for Message[src]

impl From<AsError> for Message[src]

impl Display for AsError[src]

impl Debug for AsError[src]

impl Fail for AsError[src]

Auto Trait Implementations

impl Send for AsError

impl Sync for AsError

impl Unpin for AsError

impl !UnwindSafe for AsError

impl !RefUnwindSafe for AsError

Blanket Implementations

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

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

impl<T> From<T> for 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<T> Borrow<T> for T where
    T: ?Sized
[src]

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

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

impl<T> AsFail for T where
    T: Fail
[src]

impl<E> Fail for E where
    E: 'static + Error + Send + Sync
[src]

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