pub enum InsertResult<TKey> {
Inserted,
Pending {
disconnected: TKey,
},
Full,
}
Expand description
The result of inserting an entry into a bucket.
Variants
Inserted
The entry has been successfully inserted.
Pending
Fields
disconnected: TKey
The key of the least-recently connected entry that is currently considered
disconnected and whose corresponding peer should be checked for connectivity
in order to prevent it from being evicted. If connectivity to the peer is
re-established, the corresponding entry should be updated with
NodeStatus::Connected
.
The entry is pending insertion because the relevant bucket is currently full. The entry is inserted after a timeout elapsed, if the status of the least-recently connected (and currently disconnected) node in the bucket is not updated before the timeout expires.
Full
The entry was not inserted because the relevant bucket is full.
Trait Implementations
sourceimpl<TKey> Clone for InsertResult<TKey> where
TKey: Clone,
impl<TKey> Clone for InsertResult<TKey> where
TKey: Clone,
sourcepub fn clone(&self) -> InsertResult<TKey>
pub fn clone(&self) -> InsertResult<TKey>
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 for InsertResult<TKey> where
TKey: Debug,
impl<TKey> Debug for InsertResult<TKey> where
TKey: Debug,
sourceimpl<TKey> PartialEq<InsertResult<TKey>> for InsertResult<TKey> where
TKey: PartialEq<TKey>,
impl<TKey> PartialEq<InsertResult<TKey>> for InsertResult<TKey> where
TKey: PartialEq<TKey>,
sourcepub fn eq(&self, other: &InsertResult<TKey>) -> bool
pub fn eq(&self, other: &InsertResult<TKey>) -> bool
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
sourcepub fn ne(&self, other: &InsertResult<TKey>) -> bool
pub fn ne(&self, other: &InsertResult<TKey>) -> bool
This method tests for !=
.
impl<TKey> Eq for InsertResult<TKey> where
TKey: Eq,
impl<TKey> StructuralEq for InsertResult<TKey>
impl<TKey> StructuralPartialEq for InsertResult<TKey>
Auto Trait Implementations
impl<TKey> RefUnwindSafe for InsertResult<TKey> where
TKey: RefUnwindSafe,
impl<TKey> Send for InsertResult<TKey> where
TKey: Send,
impl<TKey> Sync for InsertResult<TKey> where
TKey: Sync,
impl<TKey> Unpin for InsertResult<TKey> where
TKey: Unpin,
impl<TKey> UnwindSafe for InsertResult<TKey> where
TKey: 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)
toowned_clone_into
)Uses borrowed data to replace owned data, usually by cloning. Read more