Enum libp2p_swarm::AddressScore [−][src]
pub enum AddressScore { Infinite, Finite(u32), }
The “score” of an address w.r.t. an ordered collection of addresses.
A score is a measure of the trusworthyness of a particular observation of an address. The same address may be repeatedly reported with the same or differing scores.
Variants
The score is “infinite”, i.e. an address with this score is never
purged from the associated address records and remains sorted at
the beginning (possibly with other Infinite
ly scored addresses).
Finite(u32)
The score is finite, i.e. an address with this score has its score increased and decreased as per the frequency of reports (i.e. additions) of the same address relative to the reports of other addresses.
Trait Implementations
impl Add<AddressScore> for AddressScore
[src]
impl Add<AddressScore> for AddressScore
[src]type Output = AddressScore
The resulting type after applying the +
operator.
fn add(self, rhs: AddressScore) -> Self::Output
[src]
impl Clone for AddressScore
[src]
impl Clone for AddressScore
[src]fn clone(&self) -> AddressScore
[src]
pub fn clone_from(&mut self, source: &Self)
1.0.0[src]
impl Hash for AddressScore
[src]
impl Hash for AddressScore
[src]impl Ord for AddressScore
[src]
impl Ord for AddressScore
[src]impl PartialEq<AddressScore> for AddressScore
[src]
impl PartialEq<AddressScore> for AddressScore
[src]fn eq(&self, other: &AddressScore) -> bool
[src]
fn ne(&self, other: &AddressScore) -> bool
[src]
impl PartialOrd<AddressScore> for AddressScore
[src]
impl PartialOrd<AddressScore> for AddressScore
[src]fn partial_cmp(&self, other: &AddressScore) -> Option<Ordering>
[src]
#[must_use]pub fn lt(&self, other: &Rhs) -> bool
1.0.0[src]
#[must_use]
pub fn lt(&self, other: &Rhs) -> bool#[must_use]pub fn le(&self, other: &Rhs) -> bool
1.0.0[src]
#[must_use]
pub fn le(&self, other: &Rhs) -> bool#[must_use]pub fn gt(&self, other: &Rhs) -> bool
1.0.0[src]
#[must_use]
pub fn gt(&self, other: &Rhs) -> bool#[must_use]pub fn ge(&self, other: &Rhs) -> bool
1.0.0[src]
#[must_use]
pub fn ge(&self, other: &Rhs) -> boolimpl Sub<u32> for AddressScore
[src]
impl Sub<u32> for AddressScore
[src]