[][src]Struct pea2pea::KnownPeers

pub struct KnownPeers(_);

Contains statistics related to node's peers, currently connected or not.

Implementations

impl KnownPeers[src]

pub fn add(&self, addr: SocketAddr)[src]

Adds an address to the list of known peers.

pub fn remove(&self, addr: SocketAddr) -> Option<PeerStats>[src]

Removes an address to the list of known peers.

pub fn register_connection(&self, addr: SocketAddr)[src]

Registers a connection to the given address.

pub fn register_sent_message(&self, to: SocketAddr, len: usize)[src]

Registers a submission of a message to the given address.

pub fn register_received_message(&self, from: SocketAddr, len: usize)[src]

Registers a receipt of a message to the given address.

pub fn register_failure(&self, addr: SocketAddr)[src]

Registers a failure associated with the given address.

pub fn read(&self) -> RwLockReadGuard<'_, FxHashMap<SocketAddr, PeerStats>>[src]

Acquires a read lock over the collection of known peers.

pub fn write(&self) -> RwLockWriteGuard<'_, FxHashMap<SocketAddr, PeerStats>>[src]

Acquires a write lock over the collection of known peers.

Trait Implementations

impl Default for KnownPeers[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.