[][src]Enum libp2p_core::nodes::handled_node::HandledNodeError

pub enum HandledNodeError<THandlerErr> {
    Node(Error),
    Handler(THandlerErr),
}

Error that can happen when polling a HandledNode.

Variants

Node(Error)

An error happend in the stream muxer.

Handler(THandlerErr)

An error happened in the handler of the connection to the node.

Trait Implementations

impl<THandlerErr: Debug> Debug for HandledNodeError<THandlerErr>[src]

impl<THandlerErr> Display for HandledNodeError<THandlerErr> where
    THandlerErr: Display
[src]

impl<THandlerErr> Error for HandledNodeError<THandlerErr> where
    THandlerErr: Error + 'static, 
[src]

Auto Trait Implementations

impl<THandlerErr> !RefUnwindSafe for HandledNodeError<THandlerErr>

impl<THandlerErr> Send for HandledNodeError<THandlerErr> where
    THandlerErr: Send

impl<THandlerErr> Sync for HandledNodeError<THandlerErr> where
    THandlerErr: Sync

impl<THandlerErr> Unpin for HandledNodeError<THandlerErr> where
    THandlerErr: Unpin

impl<THandlerErr> !UnwindSafe for HandledNodeError<THandlerErr>

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> Same<T> for T

type Output = T

Should always be Self

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>,