Struct routing::XorName [] [src]

pub struct XorName(pub [u8; 32]);

A XOR_NAME_BITS-bit number, viewed as a point in XOR space.

This wraps an array of XOR_NAME_LEN bytes, i. e. a number between 0 and 2XOR_NAME_BITS - 1.

XOR space is the space of these numbers, with the XOR metric as a notion of distance, i. e. the points with IDs x and y are considered to have distance x xor y.

Methods

impl XorName
[src]

Hex-encode the XorName as a String.

Returns a copy of self, with the index-th bit flipped.

If the parameter does not address one of the name's bits, i. e. if it does not satisfy index < XOR_NAME_BITS, the result will be equal to the argument.

Returns the number of bits in which self differs from other.

Hex-decode a XorName from a &str.

Returns the number of leading bits in which self and name agree.

Here, "leading bits" means the most significant bits. E. g. for 10101... and 10011..., that value will be 2, as their common prefix 10 has length 2 and the third bit is the first one in which they disagree.

Equivalently, this is XOR_NAME_BITS - bucket_distance, where bucket_distance is the length of the remainders after the common prefix is removed from the IDs of self and name.

The bucket distance is the magnitude of the XOR distance. More precisely, if d > 0 is the XOR distance between self and name, the bucket distance equals floor(log2(d)), i. e. a bucket distance of n means that 2n - 1 <= d < 2n.

Compares lhs and rhs with respect to their distance from self.

Returns true if the i-th bit of name is different from the i-th bit of self.

Returns true if lhs is closer to self than rhs.

Equivalently, this returns true if in the most significant bit where lhs and rhs disagree, lhs agrees with self.

Returns true if lhs is closer to self than rhs, or lhs == rhs.

Trait Implementations

impl Eq for XorName
[src]

impl Copy for XorName
[src]

impl Clone for XorName
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Hash for XorName
[src]

Feeds this value into the state given, updating the hasher as necessary.

Feeds a slice of this type into the state provided.

impl Ord for XorName
[src]

This method returns an Ordering between self and other. Read more

impl PartialEq for XorName
[src]

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

impl PartialOrd for XorName
[src]

This method returns an ordering between self and other values if one exists. Read more

This method tests less than (for self and other) and is used by the < operator. Read more

This method tests less than or equal to (for self and other) and is used by the <= operator. Read more

This method tests greater than (for self and other) and is used by the > operator. Read more

This method tests greater than or equal to (for self and other) and is used by the >= operator. Read more

impl Xorable for XorName
[src]

Returns the bucket that other belongs to, in the routing table of the node with name self. This must be the number of leading bits in which self and other agree. E. g. the bucket index of other = 11110000 for self = 11111111 is 4, because the fifth bit is the first one in which they differ. Read more

Compares the distance of the arguments to self. Returns Less if lhs is closer, Greater if rhs is closer, and Equal if lhs == rhs. (The XOR distance can only be equal if the arguments are equal.) Read more

Returns true if the i-th bit of other has a different value than the i-th bit of self. Read more

impl Debug for XorName
[src]

Formats the value using the given formatter.

impl Display for XorName
[src]

Formats the value using the given formatter.

impl Rand for XorName
[src]

Generates a random instance of this type using the specified source of randomness. Read more

impl Index<Range<usize>> for XorName
[src]

The returned type after indexing

The method for the indexing (container[index]) operation

impl Index<RangeTo<usize>> for XorName
[src]

The returned type after indexing

The method for the indexing (container[index]) operation

impl Index<RangeFrom<usize>> for XorName
[src]

The returned type after indexing

The method for the indexing (container[index]) operation

impl Index<RangeFull> for XorName
[src]

The returned type after indexing

The method for the indexing (container[index]) operation

impl Encodable for XorName
[src]

impl Decodable for XorName
[src]