[][src]Struct ratman_identity::Identity

pub struct Identity(_);

A Ratman network identity

Note: this type implements Eq, which is a much better way of comparing two instances of Identity information than making a string comparison. While this might be convenient in certain API settings, we can't make the promise that the Display implementation will never change.

Methods

impl Identity[src]

pub fn truncate<'vec, V: Into<&'vec Vec<u8>>>(vec: V) -> Self[src]

Create an identity from the first 16 bytes of a vector

This function will panic, if the provided vector isn't long enough, but extra data will simply be discarded.

pub fn with_digest<'vec, V: Into<&'vec Vec<u8>>>(vec: V) -> Self[src]

Create an identity using a digest function

This allows you to pass arbitrary length data which will result in a precise ID length data output. The hash function is the cryptographic blake2 cipher, so it can be used to turn secrets into identity information.

This function requires the digest feature.

Trait Implementations

impl AsRef<[u8]> for Identity[src]

Implement RAW identity to binary array reference

impl Clone for Identity[src]

impl Copy for Identity[src]

impl Debug for Identity[src]

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

impl Display for Identity[src]

impl Eq for Identity[src]

impl<'_> From<&'_ [u8; 16]> for Identity[src]

Implement RAW From binary (reference) array

impl<'_> From<&'_ Identity> for [u8; 16][src]

Implement binary array From RAW reference

impl From<[u8; 16]> for Identity[src]

Implement RAW From binary array

impl From<Identity> for [u8; 16][src]

Implement binary array From RAW

impl Hash for Identity[src]

impl Ord for Identity[src]

impl PartialEq<Identity> for Identity[src]

impl PartialOrd<Identity> for Identity[src]

impl Serialize for Identity[src]

impl StructuralEq for Identity[src]

impl StructuralPartialEq for Identity[src]

Auto Trait Implementations

Blanket Implementations

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

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

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

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

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

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

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<T> ToHex for T where
    T: AsRef<[u8]>, 
[src]

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

type Owned = T

The resulting type after obtaining ownership.

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.