[−][src]Struct libp2p_kad::kbucket::KBucketsTable
A KBucketsTable
represents a Kademlia routing table.
Methods
impl<TPeerId, TVal> KBucketsTable<TPeerId, TVal> where
TPeerId: Clone,
[src]
TPeerId: Clone,
pub fn new(local_key: Key<TPeerId>, pending_timeout: Duration) -> Self
[src]
Creates a new, empty Kademlia routing table with entries partitioned into buckets as per the Kademlia protocol.
The given pending_timeout
specifies the duration after creation of
a PendingEntry
after which it becomes eligible for insertion into
a full bucket, replacing the least-recently (dis)connected node.
pub fn local_key(&self) -> &Key<TPeerId>
[src]
Returns the local key.
pub fn entry<'a>(
&'a mut self,
key: &'a Key<TPeerId>
) -> Entry<'a, TPeerId, TVal>
[src]
&'a mut self,
key: &'a Key<TPeerId>
) -> Entry<'a, TPeerId, TVal>
Returns an Entry
for the given key, representing the state of the entry
in the routing table.
pub fn iter<'a>(
&'a mut self
) -> impl Iterator<Item = EntryRefView<'a, TPeerId, TVal>>
[src]
&'a mut self
) -> impl Iterator<Item = EntryRefView<'a, TPeerId, TVal>>
Returns an iterator over all the entries in the routing table.
pub fn buckets<'a>(
&'a mut self
) -> impl Iterator<Item = KBucketRef<'a, TPeerId, TVal>> + 'a
[src]
&'a mut self
) -> impl Iterator<Item = KBucketRef<'a, TPeerId, TVal>> + 'a
Returns a by-reference iterator over all buckets.
The buckets are ordered by proximity to the local_key
, i.e. the first
bucket is the closest bucket (containing at most one key).
pub fn take_applied_pending(&mut self) -> Option<AppliedPending<TPeerId, TVal>>
[src]
Consumes the next applied pending entry, if any.
When an entry is attempted to be inserted and the respective bucket is full,
it may be recorded as pending insertion after a timeout, see InsertResult::Pending
.
If the oldest currently disconnected entry in the respective bucket does not change
its status until the timeout of pending entry expires, it is evicted and
the pending entry inserted instead. These insertions of pending entries
happens lazily, whenever the KBucketsTable
is accessed, and the corresponding
buckets are updated accordingly. The fact that a pending entry was applied is
recorded in the KBucketsTable
in the form of AppliedPending
results, which must be
consumed by calling this function.
pub fn closest_keys<'a, T>(
&'a mut self,
target: &'a Key<T>
) -> impl Iterator<Item = Key<TPeerId>> + 'a where
T: Clone,
[src]
&'a mut self,
target: &'a Key<T>
) -> impl Iterator<Item = Key<TPeerId>> + 'a where
T: Clone,
Returns an iterator over the keys closest to target
, ordered by
increasing distance.
pub fn closest<'a, T>(
&'a mut self,
target: &'a Key<T>
) -> impl Iterator<Item = EntryView<TPeerId, TVal>> + 'a where
T: Clone,
TVal: Clone,
[src]
&'a mut self,
target: &'a Key<T>
) -> impl Iterator<Item = EntryView<TPeerId, TVal>> + 'a where
T: Clone,
TVal: Clone,
Returns an iterator over the nodes closest to the target
key, ordered by
increasing distance.
Trait Implementations
impl<TPeerId: Clone, TVal: Clone> Clone for KBucketsTable<TPeerId, TVal>
[src]
fn clone(&self) -> KBucketsTable<TPeerId, TVal>
[src]
fn clone_from(&mut self, source: &Self)
1.0.0[src]
Performs copy-assignment from source
. Read more
impl<TPeerId: Debug, TVal: Debug> Debug for KBucketsTable<TPeerId, TVal>
[src]
Auto Trait Implementations
impl<TPeerId, TVal> Send for KBucketsTable<TPeerId, TVal> where
TPeerId: Send,
TVal: Send,
TPeerId: Send,
TVal: Send,
impl<TPeerId, TVal> Sync for KBucketsTable<TPeerId, TVal> where
TPeerId: Sync,
TVal: Sync,
TPeerId: Sync,
TVal: Sync,
Blanket Implementations
impl<T> ToOwned for T where
T: Clone,
[src]
T: Clone,
type Owned = T
The resulting type after obtaining ownership.
fn to_owned(&self) -> T
[src]
fn clone_into(&self, target: &mut T)
[src]
impl<T, U> Into<U> for T where
U: From<T>,
[src]
U: From<T>,
impl<T> From<T> for T
[src]
impl<T, U> TryFrom<U> for T where
U: Into<T>,
[src]
U: Into<T>,
type Error = Infallible
The type returned in the event of a conversion error.
fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>
[src]
impl<T, U> TryInto<U> for T where
U: TryFrom<T>,
[src]
U: TryFrom<T>,
type Error = <U as TryFrom<T>>::Error
The type returned in the event of a conversion error.
fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>
[src]
impl<T> BorrowMut<T> for T where
T: ?Sized,
[src]
T: ?Sized,
fn borrow_mut(&mut self) -> &mut T
[src]
impl<T> Borrow<T> for T where
T: ?Sized,
[src]
T: ?Sized,
impl<T> Any for T where
T: 'static + ?Sized,
[src]
T: 'static + ?Sized,
impl<T> Same<T> for T
type Output = T
Should always be Self