Struct libp2p_kad::kbucket::Bucket
source · pub struct Bucket<'a, Id: 'a, Val: 'a>(_);
Expand description
Access to a bucket.
Implementations
sourceimpl<'a, Id: 'a, Val: 'a> Bucket<'a, Id, Val>
impl<'a, Id: 'a, Val: 'a> Bucket<'a, Id, Val>
sourcepub fn num_entries(&self) -> usize
pub fn num_entries(&self) -> usize
Returns the number of entries in that bucket.
Note: Keep in mind that this operation can be racy. If
update()
is called on the table while this function is running, theupdate()
may or may not be taken into account.
sourcepub fn has_pending(&self) -> bool
pub fn has_pending(&self) -> bool
Returns true if this bucket has a pending node.
sourcepub fn last_update(&self) -> Instant
pub fn last_update(&self) -> Instant
Returns the time when any of the values in this bucket was last updated.
If the bucket is empty, this returns the time when the whole table was created.
Auto Trait Implementations
impl<'a, Id, Val> RefUnwindSafe for Bucket<'a, Id, Val>where
Id: RefUnwindSafe,
Val: RefUnwindSafe,
impl<'a, Id, Val> Send for Bucket<'a, Id, Val>where
Id: Send,
Val: Send,
impl<'a, Id, Val> Sync for Bucket<'a, Id, Val>where
Id: Sync,
Val: Sync,
impl<'a, Id, Val> Unpin for Bucket<'a, Id, Val>
impl<'a, Id, Val> !UnwindSafe for Bucket<'a, Id, Val>
Blanket Implementations
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more