Struct xor_name::XorName [] [src]

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

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

This has as its only field an array of XOR_NAME_LEN bytes, i. e. a number between 0 and 2XOR_NAME_BITS - 1, the XorName's "ID".

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]

[src]

Construct a XorName from a XOR_NAME_LEN byte array.

[src]

Return the internal array.

[src]

Hex-encode the XorName as a String.

[src]

Deprecated

Currently identical to bucket_index. This method will be replaced with XOR_NAME_BITS - bucket_index or removed entirely.

[src]

Deprecated

Use the equivalent cmp_distance instead.

[src]

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.

[src]

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 an error.

[src]

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

[src]

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

[src]

Hex-decode a XorName from a &str.

Trait Implementations

impl Eq for XorName
[src]

impl Copy for XorName
[src]

impl Debug for XorName
[src]

[src]

Formats the value using the given formatter. Read more

impl Display for XorName
[src]

[src]

Formats the value using the given formatter. Read more

impl PartialEq for XorName
[src]

[src]

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

1.0.0
[src]

This method tests for !=.

impl Rand for XorName
[src]

[src]

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

impl Ord for XorName
[src]

The XorNames can be ordered from zero as an integer. This is equivalent to ordering them by their distance from the name 0.

[src]

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

1.21.0
[src]

Compares and returns the maximum of two values. Read more

1.21.0
[src]

Compares and returns the minimum of two values. Read more

impl PartialOrd for XorName
[src]

[src]

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

1.0.0
[src]

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

1.0.0
[src]

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

1.0.0
[src]

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

1.0.0
[src]

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

impl Hash for XorName
[src]

[src]

Feeds this value into the given [Hasher]. Read more

1.3.0
[src]

Feeds a slice of this type into the given [Hasher]. Read more

impl Clone for XorName
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

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

The returned type after indexing.

[src]

Performs the indexing (container[index]) operation.

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

The returned type after indexing.

[src]

Performs the indexing (container[index]) operation.

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

The returned type after indexing.

[src]

Performs the indexing (container[index]) operation.

impl Index<RangeFull> for XorName
[src]

The returned type after indexing.

[src]

Performs the indexing (container[index]) operation.

impl Encodable for XorName
[src]

[src]

Serialize a value using an Encoder.

impl Decodable for XorName
[src]

[src]

Deserialize a value using a Decoder.

Auto Trait Implementations

impl Send for XorName

impl Sync for XorName