Enum ink_env::hash::Blake2x128[][src]

pub enum Blake2x128 {}

The BLAKE2 crypto hash with 128-bit output.

Trait Implementations

impl Clone for Blake2x128[src]

impl Copy for Blake2x128[src]

impl CryptoHash for Blake2x128[src]

impl Debug for Blake2x128[src]

impl Eq for Blake2x128[src]

impl HashOutput for Blake2x128[src]

type Type = [u8; 16]

The output type of the crypto hash. Read more

impl PartialEq<Blake2x128> for Blake2x128[src]

impl StructuralEq for Blake2x128[src]

impl StructuralPartialEq for Blake2x128[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> Same<T> for T

type Output = T

Should always be Self

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.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,