Struct libp2p::bandwidth::BandwidthSinks [−][src]
pub struct BandwidthSinks { /* fields omitted */ }
Allows obtaining the average bandwidth of the connections created from a BandwidthLogging
.
Implementations
impl BandwidthSinks
[src]
impl BandwidthSinks
[src]pub fn total_inbound(&self) -> u64
[src]
Returns the total number of bytes that have been downloaded on all the connections spawned
through the BandwidthLogging
.
Note: This method is by design subject to race conditions. The returned value should only ever be used for statistics purposes.
pub fn total_outbound(&self) -> u64
[src]
Returns the total number of bytes that have been uploaded on all the connections spawned
through the BandwidthLogging
.
Note: This method is by design subject to race conditions. The returned value should only ever be used for statistics purposes.