[][src]Enum conec::coord::CoordChanError

pub enum CoordChanError {
    UnknownSid,
    PeerClosed,
    StreamPoll(Error),
    Sink(SinkError),
    WrongMessage(ControlMsg),
    SendCoordEvent(SendError),
    EndOfBiStream,
    AcceptBiStream(ConnectionError),
    OpenBiStream(ConnectionError),
    EventsClosed,
}

Coordinator channel driver errors

Variants

UnknownSid

Received a request for an unknown stream-id

PeerClosed

Peer closed connection

StreamPoll(Error)

Polling the control channel failed

Sink(SinkError)

Writing to the control channel failed

WrongMessage(ControlMsg)

Client sent an unexpected message

SendCoordEvent(SendError)

Writing to master Coord driver failed

EndOfBiStream

Transport unexpectedly stopped delivering new streams

AcceptBiStream(ConnectionError)

Error while accepting new stream from transport

OpenBiStream(ConnectionError)

Error while opening new transport stream

EventsClosed

Events channel closed

Trait Implementations

impl Debug for CoordChanError[src]

impl Display for CoordChanError[src]

impl Error for CoordChanError[src]

impl From<ConnectionError> for CoordChanError[src]

impl From<CoordChanError> for Error[src]

impl From<SendError> for CoordChanError[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>,