[][src]Struct pea2pea::NodeStats

pub struct NodeStats { /* fields omitted */ }

Contains statistics related to the node.

Implementations

impl NodeStats[src]

pub fn register_sent_message(&self, size: usize)[src]

Registers a sent message of the provided size in bytes.

pub fn register_received_message(&self, size: usize)[src]

Registers a received message of the provided size in bytes.

pub fn sent(&self) -> (u64, u64)[src]

Returns the number of sent messages and their collective size in bytes.

pub fn received(&self) -> (u64, u64)[src]

Returns the number of received messages and their collective size in bytes.

Trait Implementations

impl Default for NodeStats[src]

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> Instrument for T[src]

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

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.