Struct libp2p_kad::kbucket::Key [−][src]
A Key in the DHT keyspace with preserved preimage.
Keys in the DHT keyspace identify both the participating nodes, as well as the records stored in the DHT.
Keys have an XOR metric as defined in the Kademlia paper, i.e. the bitwise XOR of
the hash digests, interpreted as an integer. See Key::distance.
Implementations
impl<T> Key<T>[src]
pub fn new(preimage: T) -> Key<T> where
T: Borrow<[u8]>, [src]
T: Borrow<[u8]>,
Constructs a new Key by running the given value through a random
oracle.
The preimage of type T is preserved. See Key::preimage and
Key::into_preimage.
pub fn preimage(&self) -> &T[src]
Borrows the preimage of the key.
pub fn into_preimage(self) -> T[src]
Converts the key into its preimage.
pub fn distance<U>(&self, other: &U) -> Distance where
U: AsRef<KeyBytes>, [src]
U: AsRef<KeyBytes>,
Computes the distance of the keys according to the XOR metric.
pub fn for_distance(&self, d: Distance) -> KeyBytes[src]
Returns the uniquely determined key with the given distance to self.
This implements the following equivalence:
self xor other = distance <==> other = self xor distance
Trait Implementations
impl<T> AsRef<KeyBytes> for Key<T>[src]
impl<T: Clone> Clone for Key<T>[src]
impl<T: Debug> Debug for Key<T>[src]
impl<T> Eq for Key<T>[src]
impl From<MultihashGeneric<Code>> for Key<Multihash>[src]
impl From<PeerId> for Key<PeerId>[src]
impl<T> Hash for Key<T>[src]
fn hash<H: Hasher>(&self, state: &mut H)[src]
pub fn hash_slice<H>(data: &[Self], state: &mut H) where
H: Hasher, 1.3.0[src]
H: Hasher,
impl<T> Into<KeyBytes> for Key<T>[src]
impl<T, U> PartialEq<Key<U>> for Key<T>[src]
Auto Trait Implementations
impl<T> RefUnwindSafe for Key<T> where
T: RefUnwindSafe,
T: RefUnwindSafe,
impl<T> Send for Key<T> where
T: Send,
T: Send,
impl<T> Sync for Key<T> where
T: Sync,
T: Sync,
impl<T> Unpin for Key<T> where
T: Unpin,
T: Unpin,
impl<T> UnwindSafe for Key<T> where
T: UnwindSafe,
T: UnwindSafe,
Blanket Implementations
impl<T> Any for T where
T: 'static + ?Sized, [src]
T: 'static + ?Sized,
impl<T> Borrow<T> for T where
T: ?Sized, [src]
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized, [src]
T: ?Sized,
pub fn borrow_mut(&mut self) -> &mut T[src]
impl<T> From<T> for T[src]
impl<T, U> Into<U> for T where
U: From<T>, [src]
U: From<T>,
impl<T> Same<T> for T[src]
type Output = T
Should always be Self
impl<T> ToOwned for T where
T: Clone, [src]
T: Clone,
type Owned = T
The resulting type after obtaining ownership.
pub fn to_owned(&self) -> T[src]
pub fn clone_into(&self, target: &mut 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.
pub 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.
pub fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>[src]
impl<V, T> VZip<V> for T where
V: MultiLane<T>, [src]
V: MultiLane<T>,