[][src]Enum libp2p::identify::IdentifyEvent

pub enum IdentifyEvent {
    Identified {
        peer_id: PeerId,
        info: IdentifyInfo,
        observed_addr: Multiaddr,
    },
    Error {
        peer_id: PeerId,
        error: ProtocolsHandlerUpgrErr<Error>,
    },
    SendBack {
        peer_id: PeerId,
        result: Result<(), Error>,
    },
}

Event generated by the Identify.

Variants

Identified

We obtained identification information from the remote

Fields of Identified

peer_id: PeerId

Peer that has been successfully identified.

info: IdentifyInfo

Information of the remote.

observed_addr: Multiaddr

Address the remote observes us as.

Error

Error while attempting to identify the remote.

Fields of Error

peer_id: PeerId

Peer that we fail to identify.

error: ProtocolsHandlerUpgrErr<Error>

The error that happened.

SendBack

Finished sending back our identification information to a remote.

Fields of SendBack

peer_id: PeerId

Peer that we sent our identification info to.

result: Result<(), Error>

Contains the error that potentially happened when sending back.

Trait Implementations

impl Debug for IdentifyEvent[src]

Auto Trait Implementations

Blanket Implementations

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

impl<T, U> Into<U> for T where
    U: From<T>, 
[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> Same<T> for T

type Output = T

Should always be Self

impl<T> Erased for T

impl<T> Erased for T