Struct libp2p_kad::kbucket::AppliedPending
source · pub struct AppliedPending<TKey, TVal> {
pub inserted: Node<TKey, TVal>,
pub evicted: Option<Node<TKey, TVal>>,
}
Expand description
The result of applying a pending node to a bucket, possibly replacing an existing node.
Fields§
§inserted: Node<TKey, TVal>
The key of the inserted pending node.
evicted: Option<Node<TKey, TVal>>
The node that has been evicted from the bucket to make room for the pending node, if any.
Trait Implementations§
source§impl<TKey: Clone, TVal: Clone> Clone for AppliedPending<TKey, TVal>
impl<TKey: Clone, TVal: Clone> Clone for AppliedPending<TKey, TVal>
source§fn clone(&self) -> AppliedPending<TKey, TVal>
fn clone(&self) -> AppliedPending<TKey, TVal>
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresource§impl<TKey: PartialEq, TVal: PartialEq> PartialEq<AppliedPending<TKey, TVal>> for AppliedPending<TKey, TVal>
impl<TKey: PartialEq, TVal: PartialEq> PartialEq<AppliedPending<TKey, TVal>> for AppliedPending<TKey, TVal>
source§fn eq(&self, other: &AppliedPending<TKey, TVal>) -> bool
fn eq(&self, other: &AppliedPending<TKey, TVal>) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.