#[non_exhaustive]pub struct Blake3Stamp(pub [u8; 32]);Expand description
32-byte BLAKE3 digest, wrapped for trait impls.
Tuple Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional
Struct { .. } syntax; cannot be matched against without a wildcard ..; and struct update syntax will not work.0: [u8; 32]Trait Implementations§
Source§impl Clone for Blake3Stamp
impl Clone for Blake3Stamp
Source§fn clone(&self) -> Blake3Stamp
fn clone(&self) -> Blake3Stamp
Returns a duplicate of the value. Read more
1.0.0 · 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 Blake3Stamp
impl Debug for Blake3Stamp
Source§impl Hash for Blake3Stamp
impl Hash for Blake3Stamp
Source§impl PartialEq for Blake3Stamp
impl PartialEq for Blake3Stamp
impl Copy for Blake3Stamp
impl Eq for Blake3Stamp
impl StructuralPartialEq for Blake3Stamp
Auto Trait Implementations§
impl Freeze for Blake3Stamp
impl RefUnwindSafe for Blake3Stamp
impl Send for Blake3Stamp
impl Sync for Blake3Stamp
impl Unpin for Blake3Stamp
impl UnsafeUnpin for Blake3Stamp
impl UnwindSafe for Blake3Stamp
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<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.