Struct libp2p_kad::kbucket::KeyBytes
source · [−]pub struct KeyBytes(_);
Expand description
The raw bytes of a key in the DHT keyspace.
Implementations
Creates a new key in the DHT keyspace by running the given value through a random oracle.
Computes the distance of the keys according to the XOR metric.
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
Auto Trait Implementations
impl RefUnwindSafe for KeyBytes
impl UnwindSafe for KeyBytes
Blanket Implementations
Mutably borrows from an owned value. Read more