[][src]Struct libp2p_ping::handler::PingHandler

pub struct PingHandler { /* fields omitted */ }

Protocol handler that handles pinging the remote at a regular period and answering ping queries.

If the remote doesn't respond, produces an error that closes the connection.

Methods

impl PingHandler[src]

pub fn new(config: PingConfig) -> Self[src]

Builds a new PingHandler with the given configuration.

Trait Implementations

impl ProtocolsHandler for PingHandler[src]

type InEvent = Void

Custom event that can be received from the outside.

type OutEvent = PingResult

Custom event that can be produced by the handler and that will be returned to the outside.

type Error = PingFailure

The type of errors returned by [ProtocolsHandler::poll].

type InboundProtocol = Ping

The inbound upgrade for the protocol(s) used by the handler.

type OutboundProtocol = Ping

The outbound upgrade for the protocol(s) used by the handler.

type OutboundOpenInfo = ()

The type of additional information passed to an OutboundSubstreamRequest.

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> IntoProtocolsHandler for T where
    T: ProtocolsHandler
[src]

type Handler = T

The protocols handler.

impl<T> Same<T> for T

type Output = T

Should always be Self

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