pub struct PeersetHandle { /* private fields */ }
Expand description

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

Implementations§

source§

impl PeersetHandle

source

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

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.

source

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

Remove a previously-added reserved peer.

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

source

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

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

source

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

Set reserved peers to the new set.

source

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

Reports an adjustment to the reputation of the given peer.

source

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

Add a peer to a set.

source

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

Remove a peer from a set.

source

pub async fn peer_reputation(self, peer_id: PeerId) -> Result<i32, ()>

Returns the reputation value of the peer.

Trait Implementations§

source§

impl Clone for PeersetHandle

source§

fn clone(&self) -> PeersetHandle

Returns a copy of the value. Read more
1.0.0 · source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
source§

impl Debug for PeersetHandle

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more

Auto Trait Implementations§

Blanket Implementations§

source§

impl<T> Any for Twhere T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for Twhere T: ?Sized,

const: unstable · source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for Twhere T: ?Sized,

const: unstable · source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

const: unstable · source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T, U> Into<U> for Twhere U: From<T>,

const: unstable · source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<T> Same<T> for T

§

type Output = T

Should always be Self
§

impl<T> SaturatedConversion for T

§

fn saturated_from<T>(t: T) -> Selfwhere Self: UniqueSaturatedFrom<T>,

Convert from a value of T into an equivalent instance of Self. Read more
§

fn saturated_into<T>(self) -> Twhere Self: UniqueSaturatedInto<T>,

Consume self to return an equivalent value of T. Read more
source§

impl<T> ToOwned for Twhere T: Clone,

§

type Owned = T

The resulting type after obtaining ownership.
source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
source§

impl<T, U> TryFrom<U> for Twhere U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
const: unstable · source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for Twhere U: TryFrom<T>,

§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
const: unstable · source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
§

impl<T, S> UniqueSaturatedInto<T> for Swhere T: Bounded, S: TryInto<T>,

§

fn unique_saturated_into(self) -> T

Consume self to return an equivalent value of T.
§

impl<V, T> VZip<V> for Twhere V: MultiLane<T>,

§

fn vzip(self) -> V