[][src]Struct libp2p_ping::handler::PingConfig

pub struct PingConfig { /* fields omitted */ }

The configuration for outbound pings.

Methods

impl PingConfig[src]

pub fn new() -> Self[src]

Creates a new PingConfig with the following default settings:

These settings have the following effect:

  • A ping is sent every 15 seconds on a healthy connection.
  • Every ping sent must yield a response within 20 seconds in order to be successful.
  • A single ping failure is sufficient for the connection to be subject to being closed.

pub fn with_timeout(self, d: Duration) -> Self[src]

Sets the ping timeout.

pub fn with_interval(self, d: Duration) -> Self[src]

Sets the ping interval.

pub fn with_max_failures(self, n: NonZeroU32) -> Self[src]

Sets the maximum number of consecutive ping failures upon which the remote peer is considered unreachable and the connection closed.

Trait Implementations

impl Clone for PingConfig[src]

fn clone_from(&mut self, source: &Self)
1.0.0
[src]

Performs copy-assignment from source. Read more

impl Debug for PingConfig[src]

Auto Trait Implementations

impl Send for PingConfig

impl Sync for PingConfig

Blanket Implementations

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

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T> From for T[src]

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

type Error = Infallible

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

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