pub struct Blake3Hash(/* private fields */);Expand description
BLAKE3 hash output — 32 bytes (256 bits).
Display and Debug formats produce lowercase hexadecimal.
Implementations§
Trait Implementations§
Source§impl AsRef<[u8]> for Blake3Hash
impl AsRef<[u8]> for Blake3Hash
Source§impl Clone for Blake3Hash
impl Clone for Blake3Hash
Source§fn clone(&self) -> Blake3Hash
fn clone(&self) -> Blake3Hash
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for Blake3Hash
impl Debug for Blake3Hash
Source§impl Display for Blake3Hash
impl Display for Blake3Hash
Source§impl Hash for Blake3Hash
impl Hash for Blake3Hash
Source§impl PartialEq for Blake3Hash
impl PartialEq for Blake3Hash
Source§fn eq(&self, other: &Blake3Hash) -> bool
fn eq(&self, other: &Blake3Hash) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Copy for Blake3Hash
impl Eq for Blake3Hash
impl StructuralPartialEq for Blake3Hash
Auto Trait Implementations§
impl Freeze for Blake3Hash
impl RefUnwindSafe for Blake3Hash
impl Send for Blake3Hash
impl Sync for Blake3Hash
impl Unpin for Blake3Hash
impl UnsafeUnpin for Blake3Hash
impl UnwindSafe for Blake3Hash
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more