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 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source
. Read more
sourceimpl<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
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
sourcefn ne(&self, other: &AppliedPending<TKey, TVal>) -> bool
fn ne(&self, other: &AppliedPending<TKey, TVal>) -> bool
This method tests for !=
.
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 T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcepub fn borrow_mut(&mut self) -> &mut T
pub fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<T> ToOwned for T where
T: Clone,
impl<T> ToOwned for T where
T: Clone,
type Owned = T
type Owned = T
The resulting type after obtaining ownership.
sourcepub fn to_owned(&self) -> T
pub fn to_owned(&self) -> T
Creates owned data from borrowed data, usually by cloning. Read more
sourcepub fn clone_into(&self, target: &mut T)
pub fn clone_into(&self, target: &mut T)
🔬 This is a nightly-only experimental API. (
toowned_clone_into
)Uses borrowed data to replace owned data, usually by cloning. Read more