[][src]Struct safe_nd::XorName

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]

pub fn encode_to_zbase32(&self) -> String[src]

Returns the XorName serialised and encoded in z-base-32.

pub fn decode_from_zbase32<I: Decodable>(encoded: I) -> Result<Self>[src]

Creates from z-base-32 encoded string.

Trait Implementations

impl Eq for XorName[src]

impl Default for XorName[src]

impl Clone for XorName[src]

impl PartialOrd<XorName> for XorName[src]

impl PartialEq<XorName> for XorName[src]

impl Ord for XorName[src]

impl From<PublicKey> for XorName[src]

impl Copy for XorName[src]

impl Hash for XorName[src]

impl Debug for XorName[src]

impl Display for XorName[src]

impl Serialize for XorName[src]

impl<'de> Deserialize<'de> for XorName[src]

impl Distribution<XorName> for Standard[src]

Auto Trait Implementations

impl Send for XorName

impl Unpin for XorName

impl Sync for XorName

impl UnwindSafe for XorName

impl RefUnwindSafe for XorName

Blanket Implementations

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> From<T> for T[src]

impl<T> ToString for T where
    T: Display + ?Sized
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> DeserializeOwned for T where
    T: Deserialize<'de>, 
[src]

impl<T> Clear for T where
    T: InitializableFromZeroed + ?Sized

impl<T> InitializableFromZeroed for T where
    T: Default

impl<T> Same<T> for T

type Output = T

Should always be Self