[][src]Enum libp2p_ping::PingEvent

pub enum PingEvent {
    PingSuccess {
        peer: PeerId,
        time: Duration,
    },
}

Event generated by the Ping behaviour.

Variants

PingSuccess

We have successfully pinged a peer we are connected to.

Fields of PingSuccess

peer: PeerId

Id of the peer that we pinged.

time: Duration

Time elapsed between when we sent the ping and when we received the response.

Auto Trait Implementations

impl Send for PingEvent

impl Sync for PingEvent

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