Enum libp2p_kad::kbucket::InsertResult [−][src]
pub enum InsertResult<TKey> { Inserted, Pending { disconnected: TKey, }, Full, }
Expand description
The result of inserting an entry into a bucket.
Variants
The entry has been successfully inserted.
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.
Show fields
Fields of Pending
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 was not inserted because the relevant bucket is full.
Trait Implementations
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
This method tests for !=
.
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
Mutably borrows from an owned value. Read more
type Output = T
type Output = T
Should always be Self
pub fn vzip(self) -> V