Struct ipfs_embed::BucketKey
[−]pub struct BucketKey<T> { /* private fields */ }Expand description
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>
impl<T> Key<T>
pub fn new(preimage: T) -> Key<T> where
T: Borrow<[u8]>,
pub fn new(preimage: T) -> Key<T> where
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 into_preimage(self) -> T
pub fn into_preimage(self) -> T
Converts the key into its preimage.
pub fn distance<U>(&self, other: &U) -> Distance where
U: AsRef<KeyBytes>,
pub fn distance<U>(&self, other: &U) -> Distance where
U: AsRef<KeyBytes>,
Computes the distance of the keys according to the XOR metric.
pub fn for_distance(&self, d: Distance) -> KeyBytes
pub fn for_distance(&self, d: Distance) -> KeyBytes
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>
impl<T> AsRef<KeyBytes> for Key<T>
fn as_ref(&self) -> &KeyBytes
fn as_ref(&self) -> &KeyBytes
Converts this type into a shared reference of the (usually inferred) input type.
impl<T> Into<KeyBytes> for Key<T>
impl<T> Into<KeyBytes> for Key<T>
fn into(self) -> KeyBytes
fn into(self) -> KeyBytes
Converts this type into the (usually inferred) input type.
impl<T> Eq for Key<T>
Auto Trait Implementations
impl<T> RefUnwindSafe for Key<T> where
T: RefUnwindSafe,
impl<T> Send for Key<T> where
T: Send,
impl<T> Sync for Key<T> where
T: Sync,
impl<T> Unpin for Key<T> where
T: Unpin,
impl<T> UnwindSafe for Key<T> where
T: UnwindSafe,
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<T> Instrument for T
impl<T> Instrument for T
sourcefn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
sourcefn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
sourceimpl<T> ToOwned for T where
T: Clone,
impl<T> ToOwned for T where
T: Clone,
type Owned = T
type Owned = T
The resulting type after obtaining ownership.
sourcefn clone_into(&self, target: &mut T)
fn clone_into(&self, target: &mut T)
toowned_clone_into)Uses borrowed data to replace owned data, usually by cloning. Read more
impl<V, T> VZip<V> for T where
V: MultiLane<T>,
impl<V, T> VZip<V> for T where
V: MultiLane<T>,
fn vzip(self) -> V
sourceimpl<T> WithSubscriber for T
impl<T> WithSubscriber for T
sourcefn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self> where
S: Into<Dispatch>,
fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self> where
S: Into<Dispatch>,
Attaches the provided Subscriber to this type, returning a
WithDispatch wrapper. Read more
sourcefn with_current_subscriber(self) -> WithDispatch<Self>
fn with_current_subscriber(self) -> WithDispatch<Self>
Attaches the current default Subscriber to this type, returning a
WithDispatch wrapper. Read more