Struct blake2_rfc::blake2b::Blake2bResult [−][src]
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]
fn clone(&self) -> Blake2bResult
[src]
pub fn clone_from(&mut self, source: &Self)
1.0.0[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]
T: 'static + ?Sized,
impl<T> Borrow<T> for T where
T: ?Sized,
[src]
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
[src]
T: ?Sized,
pub fn borrow_mut(&mut self) -> &mut T
[src]
impl<T> From<T> for T
[src]
impl<T, U> Into<U> for T where
U: From<T>,
[src]
U: From<T>,
impl<T> ToOwned for T where
T: Clone,
[src]
T: Clone,
type Owned = T
The resulting type after obtaining ownership.
pub fn to_owned(&self) -> T
[src]
pub fn clone_into(&self, target: &mut T)
[src]
impl<T, U> TryFrom<U> for T where
U: Into<T>,
[src]
U: Into<T>,
type Error = Infallible
The type returned in the event of a conversion error.
pub fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>
[src]
impl<T, U> TryInto<U> for T where
U: TryFrom<T>,
[src]
U: TryFrom<T>,