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, TVal> Clone for AppliedPending<TKey, TVal>where
TKey: Clone,
TVal: Clone,
impl<TKey, TVal> Clone for AppliedPending<TKey, TVal>where TKey: Clone, TVal: Clone,
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, TVal> PartialEq<AppliedPending<TKey, TVal>> for AppliedPending<TKey, TVal>where
TKey: PartialEq<TKey>,
TVal: PartialEq<TVal>,
impl<TKey, TVal> PartialEq<AppliedPending<TKey, TVal>> for AppliedPending<TKey, TVal>where TKey: PartialEq<TKey>, TVal: PartialEq<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 ==
.impl<TKey, TVal> Eq for AppliedPending<TKey, TVal>where TKey: Eq, TVal: Eq,
impl<TKey, TVal> StructuralEq for AppliedPending<TKey, TVal>
impl<TKey, TVal> StructuralPartialEq for AppliedPending<TKey, TVal>
Auto Trait Implementations§
impl<TKey, TVal> RefUnwindSafe for AppliedPending<TKey, TVal>where TKey: RefUnwindSafe, TVal: RefUnwindSafe,
impl<TKey, TVal> Send for AppliedPending<TKey, TVal>where TKey: Send, TVal: Send,
impl<TKey, TVal> Sync for AppliedPending<TKey, TVal>where TKey: Sync, TVal: Sync,
impl<TKey, TVal> Unpin for AppliedPending<TKey, TVal>where TKey: Unpin, TVal: Unpin,
impl<TKey, TVal> UnwindSafe for AppliedPending<TKey, TVal>where TKey: UnwindSafe, TVal: UnwindSafe,
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more