[][src]Struct libp2p::bandwidth::BandwidthLogging

pub struct BandwidthLogging<TInner> { /* fields omitted */ }

Wraps around a Transport and logs the bandwidth that goes through all the opened connections.

Methods

impl<TInner> BandwidthLogging<TInner>[src]

pub fn new(inner: TInner, period: Duration) -> (Self, Arc<BandwidthSinks>)[src]

Creates a new BandwidthLogging around the transport.

Trait Implementations

impl<TInner: Clone> Clone for BandwidthLogging<TInner>[src]

impl<TInner> Transport for BandwidthLogging<TInner> where
    TInner: Transport
[src]

type Output = BandwidthConnecLogging<TInner::Output>

The result of a connection setup process, including protocol upgrades. Read more

type Error = TInner::Error

An error that occurred during connection setup.

type Listener = BandwidthListener<TInner::Listener>

A stream of Outputs for inbound connections. Read more

type ListenerUpgrade = BandwidthFuture<TInner::ListenerUpgrade>

A pending Output for an inbound connection, obtained from the Listener stream. Read more

type Dial = BandwidthFuture<TInner::Dial>

A pending Output for an outbound connection, obtained from dialing. Read more

Auto Trait Implementations

impl<TInner> !RefUnwindSafe for BandwidthLogging<TInner>

impl<TInner> Send for BandwidthLogging<TInner> where
    TInner: Send

impl<TInner> Sync for BandwidthLogging<TInner> where
    TInner: Sync

impl<TInner> Unpin for BandwidthLogging<TInner> where
    TInner: Unpin

impl<TInner> !UnwindSafe for BandwidthLogging<TInner>

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> Same<T> for T

type Output = T

Should always be Self

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

type Owned = T

The resulting type after obtaining ownership.

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