[][src]Struct blake2_rfc_bellman_edition::blake2s::Blake2sResult

pub struct Blake2sResult { /* fields omitted */ }

Container for a hash result.

This container uses a constant-time comparison for equality. If a constant-time comparison is not necessary, the hash result can be extracted with the as_bytes method.

Methods

impl Blake2sResult[src]

pub fn as_bytes(&self) -> &[u8][src]

Returns the contained hash result as a byte string.

pub fn len(&self) -> usize[src]

Returns the length of the hash result.

This is the same value that was used to create the hash context.

Trait Implementations

impl Copy for Blake2sResult[src]

impl Debug for Blake2sResult[src]

impl PartialEq<Blake2sResult> for Blake2sResult[src]

#[must_use]
fn ne(&self, other: &Rhs) -> bool
1.0.0
[src]

This method tests for !=.

impl PartialEq<[u8]> for Blake2sResult[src]

#[must_use]
fn ne(&self, other: &Rhs) -> bool
1.0.0
[src]

This method tests for !=.

impl Eq for Blake2sResult[src]

impl Clone for Blake2sResult[src]

fn clone_from(&mut self, source: &Self)
1.0.0
[src]

Performs copy-assignment from source. Read more

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

Auto Trait Implementations

Blanket Implementations

impl<T> From for T[src]

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

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto 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, U> Into for T where
    U: From<T>, 
[src]

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

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

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

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

type Owned = T