Struct libp2p::kad::kbucket::PresentEntry [−][src]
pub struct PresentEntry<'a, TKey, TVal>(_);
An entry present in a bucket.
Implementations
impl<'a, TKey, TVal> PresentEntry<'a, TKey, TVal> where
TKey: Clone + AsRef<KeyBytes>,
TVal: Clone,
[src]
impl<'a, TKey, TVal> PresentEntry<'a, TKey, TVal> where
TKey: Clone + AsRef<KeyBytes>,
TVal: Clone,
[src]pub fn key(&self) -> &TKey
[src]
Returns the key of the entry.
pub fn value(&mut self) -> &mut TVal
[src]
Returns the value associated with the key.
pub fn update(self, status: NodeStatus) -> PresentEntry<'a, TKey, TVal>
[src]
Sets the status of the entry to NodeStatus::Disconnected
.
pub fn remove(self) -> EntryView<TKey, TVal>
[src]
Removes the entry from the bucket.
Trait Implementations
Auto Trait Implementations
impl<'a, TKey, TVal> RefUnwindSafe for PresentEntry<'a, TKey, TVal> where
TKey: RefUnwindSafe,
TVal: RefUnwindSafe,
TKey: RefUnwindSafe,
TVal: RefUnwindSafe,
impl<'a, TKey, TVal> Send for PresentEntry<'a, TKey, TVal> where
TKey: Send + Sync,
TVal: Send,
TKey: Send + Sync,
TVal: Send,
impl<'a, TKey, TVal> Sync for PresentEntry<'a, TKey, TVal> where
TKey: Sync,
TVal: Sync,
TKey: Sync,
TVal: Sync,