Struct blake2_rfc::blake2b::Blake2bResult[][src]

pub struct Blake2bResult { /* 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.

Implementations

impl Blake2bResult[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 AsRef<[u8]> for Blake2bResult[src]

impl Clone for Blake2bResult[src]

impl Copy for Blake2bResult[src]

impl Debug for Blake2bResult[src]

impl Eq for Blake2bResult[src]

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

impl PartialEq<Blake2bResult> for Blake2bResult[src]

Auto Trait Implementations

impl RefUnwindSafe for Blake2bResult

impl Send for Blake2bResult

impl Sync for Blake2bResult

impl Unpin for Blake2bResult

impl UnwindSafe for Blake2bResult

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.