Struct libp2p::kad::kbucket::Key [−][src]
pub struct Key<T> { /* fields omitted */ }
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.
Key
s 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]
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 From<Multihash<UInt<UInt<UInt<UInt<UInt<UInt<UInt<UTerm, B1>, B0>, B0>, B0>, B0>, B0>, B0>>> for Key<Multihash<UInt<UInt<UInt<UInt<UInt<UInt<UInt<UTerm, B1>, B0>, B0>, B0>, B0>, B0>, B0>>>
[src]
impl From<Multihash<UInt<UInt<UInt<UInt<UInt<UInt<UInt<UTerm, B1>, B0>, B0>, B0>, B0>, B0>, B0>>> for Key<Multihash<UInt<UInt<UInt<UInt<UInt<UInt<UInt<UTerm, B1>, B0>, B0>, B0>, B0>, B0>, B0>>>
[src]impl<T> Eq 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,