[][src]Struct sc_peerset::PeersetHandle

pub struct PeersetHandle { /* fields omitted */ }

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

Methods

impl PeersetHandle[src]

pub fn add_reserved_peer(&self, 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, 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, reserved: bool)[src]

Sets whether or not the peerset only has connections .

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

Reports an adjustment to the reputation of the given peer.

pub fn set_priority_group(&self, group_id: String, peers: HashSet<PeerId>)[src]

Modify a priority group.

pub fn add_to_priority_group(&self, group_id: String, peer_id: PeerId)[src]

Add a peer to a priority group.

pub fn remove_from_priority_group(&self, group_id: String, peer_id: PeerId)[src]

Remove a peer from a priority group.

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