[][src]Struct bromberg_sl2::HashMatrix

pub struct HashMatrix(_);

The type of hash values. Takes up 512 bits of space. Can be created only by composition of the provided BrombergHashable instances, since not all 512-bit sequences are valid hashes (in fact, fewer than 1/4 of them will be valid).

Implementations

impl HashMatrix[src]

pub fn to_hex(self) -> String[src]

Produce a hex digest of the hash. This will be 128 hex digits.

Trait Implementations

impl Clone for HashMatrix[src]

impl Copy for HashMatrix[src]

impl Debug for HashMatrix[src]

impl Eq for HashMatrix[src]

impl Hash for HashMatrix[src]

impl Mul<HashMatrix> for HashMatrix[src]

type Output = Self

The resulting type after applying the * operator.

impl Ord for HashMatrix[src]

impl PartialEq<HashMatrix> for HashMatrix[src]

impl PartialOrd<HashMatrix> for HashMatrix[src]

impl StructuralEq for HashMatrix[src]

impl StructuralPartialEq for HashMatrix[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> From<T> for T[src]

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

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

type Owned = T

The resulting type after obtaining ownership.

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.