Enum tokio_thrift::ThriftError [] [src]

pub enum ThriftError {
    Other,
    NotReady,
    Str(String),
    IO(Error),
    ByteOrder(Error),
    PoisonError,
    RecvError(RecvError),
    SendError,
}

Variants

Trait Implementations

impl Debug for ThriftError
[src]

Formats the value using the given formatter.

impl From<Error> for ThriftError
[src]

Performs the conversion.

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

Performs the conversion.

impl From<Error> for ThriftError
[src]

Performs the conversion.

impl From<RecvError> for ThriftError
[src]

Performs the conversion.

impl From<Error> for ThriftError
[src]

Performs the conversion.

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

Performs the conversion.