Enum libp2p_kad::kbucket::Entry
source · [−]pub enum Entry<'a, TPeerId, TVal> {
Present(PresentEntry<'a, TPeerId, TVal>, NodeStatus),
Pending(PendingEntry<'a, TPeerId, TVal>, NodeStatus),
Absent(AbsentEntry<'a, TPeerId, TVal>),
SelfEntry,
}
Expand description
A reference into a single entry of a KBucketsTable
.
Variants
Present(PresentEntry<'a, TPeerId, TVal>, NodeStatus)
The entry is present in a bucket.
Pending(PendingEntry<'a, TPeerId, TVal>, NodeStatus)
The entry is pending insertion in a bucket.
Absent(AbsentEntry<'a, TPeerId, TVal>)
The entry is absent and may be inserted.
SelfEntry
The entry represents the local node.
Implementations
sourceimpl<'a, TKey, TVal> Entry<'a, TKey, TVal> where
TKey: Clone + AsRef<KeyBytes>,
TVal: Clone,
impl<'a, TKey, TVal> Entry<'a, TKey, TVal> where
TKey: Clone + AsRef<KeyBytes>,
TVal: Clone,
sourcepub fn view(&'a mut self) -> Option<EntryRefView<'a, TKey, TVal>>
pub fn view(&'a mut self) -> Option<EntryRefView<'a, TKey, TVal>>
Creates an immutable by-reference view of the entry.
Returns None
if the entry is neither present in a bucket nor
pending insertion into a bucket.
Trait Implementations
Auto Trait Implementations
impl<'a, TPeerId, TVal> RefUnwindSafe for Entry<'a, TPeerId, TVal> where
TPeerId: RefUnwindSafe,
TVal: RefUnwindSafe,
impl<'a, TPeerId, TVal> Send for Entry<'a, TPeerId, TVal> where
TPeerId: Send + Sync,
TVal: Send,
impl<'a, TPeerId, TVal> Sync for Entry<'a, TPeerId, TVal> where
TPeerId: Sync,
TVal: Sync,
impl<'a, TPeerId, TVal> Unpin for Entry<'a, TPeerId, TVal>
impl<'a, TPeerId, TVal> !UnwindSafe for Entry<'a, TPeerId, TVal>
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