[][src]Enum cbor_protocol::ProtocolError

pub enum ProtocolError {
    Timeout,
    NoDataReceived,
    ReceiveFailed {
        err: Error,
    },
    SendFailed {
        dest: SocketAddr,
        err: Error,
    },
    IoError {
        err: Error,
    },
    ParseFail {
        err: String,
    },
}

An error generated during protocol execution

Variants

Timeout

Indicates a timeout when sending or receiving

NoDataReceived

Indicates no data was received

ReceiveFailed

Indicates a failure to receive

Fields of ReceiveFailed

err: Error

Cause of receive failure

SendFailed

Indicates a failure to send

Fields of SendFailed

dest: SocketAddr

Intended send destination

err: Error

Cause of send failure

IoError

Indicates a non-send/received Io error

Fields of IoError

err: Error

Root Io Error

ParseFail

Indicates a failure to parse a message

Fields of ParseFail

err: String

Cause of parsing failure

Trait Implementations

impl Debug for ProtocolError[src]

impl Display for ProtocolError[src]

impl Fail for ProtocolError[src]

Auto Trait Implementations

impl Send for ProtocolError

impl Unpin for ProtocolError

impl Sync for ProtocolError

impl !UnwindSafe for ProtocolError

impl !RefUnwindSafe for ProtocolError

Blanket Implementations

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

impl<T> Borrow<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, 

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