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§

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.

Returns the key of the entry.

Returns None if the Key used to construct this Entry is not a valid key for an entry in a bucket, which is the case for the local_key of the KBucketsTable referring to the local node.

Returns the value associated with the entry.

Returns None if the entry is absent from any bucket or refers to the local node.

Trait Implementations§

Formats the value using the given formatter. Read more

Auto Trait Implementations§

Blanket Implementations§

Gets the TypeId of self. Read more
Immutably borrows from an owned value. Read more
Mutably borrows from an owned value. Read more

Returns the argument unchanged.

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Should always be Self
The type returned in the event of a conversion error.
Performs the conversion.
The type returned in the event of a conversion error.
Performs the conversion.