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
sourceimpl<TKey: Clone, TVal: Clone> Clone for AppliedPending<TKey, TVal>
impl<TKey: Clone, TVal: Clone> Clone for AppliedPending<TKey, TVal>
sourcefn clone(&self) -> AppliedPending<TKey, TVal>
fn clone(&self) -> AppliedPending<TKey, TVal>
Returns a copy of the value. Read more
1.0.0 · sourceconst fn clone_from(&mut self, source: &Self)
const fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresourceimpl<TKey: Debug, TVal: Debug> Debug for AppliedPending<TKey, TVal>
impl<TKey: Debug, TVal: Debug> Debug for AppliedPending<TKey, TVal>
sourceimpl<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>
sourcefn eq(&self, other: &AppliedPending<TKey, TVal>) -> bool
fn eq(&self, other: &AppliedPending<TKey, TVal>) -> bool
impl<TKey: Eq, TVal: Eq> Eq for AppliedPending<TKey, TVal>
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
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more