Struct tc_peerset::PeersetHandle[][src]

pub struct PeersetHandle { /* fields omitted */ }

Shared handle to the peer set manager (PSM). Distributed around the code.

Implementations

impl PeersetHandle[src]

pub fn add_reserved_peer(&self, set_id: SetId, peer_id: PeerId)[src]

Adds a new reserved peer. The peerset will make an effort to always remain connected to this peer.

Has no effect if the node was already a reserved peer.

Note: Keep in mind that the networking has to know an address for this node, otherwise it will not be able to connect to it.

pub fn remove_reserved_peer(&self, set_id: SetId, peer_id: PeerId)[src]

Remove a previously-added reserved peer.

Has no effect if the node was not a reserved peer.

pub fn set_reserved_only(&self, set_id: SetId, reserved: bool)[src]

Sets whether or not the peerset only has connections with nodes marked as reserved for the given set.

pub fn set_reserved_peers(&self, set_id: SetId, peer_ids: HashSet<PeerId>)[src]

Set reserved peers to the new set.

pub fn report_peer(&self, peer_id: PeerId, score_diff: ReputationChange)[src]

Reports an adjustment to the reputation of the given peer.

pub fn add_to_peers_set(&self, set_id: SetId, peer_id: PeerId)[src]

Add a peer to a set.

pub fn remove_from_peers_set(&self, set_id: SetId, peer_id: PeerId)[src]

Remove a peer from a set.

Trait Implementations

impl Clone for PeersetHandle[src]

impl Debug for PeersetHandle[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, 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>,