[][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 for T[src]

impl<T, U> Into for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom for T where
    U: Into<T>, 
[src]

type Error = !

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

impl<T> Borrow for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> BorrowMut for T where
    T: ?Sized
[src]

impl<T, U> TryInto for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

impl<T> Same for T

type Output = T

Should always be Self

impl<T> Erased for T