pub struct Digest<const N: usize>(/* private fields */);
Expand description
A variable bit length digest, output from a Hasher
implementation.
Implementations§
Trait Implementations§
Source§impl From<Digest<16>> for PageDigest
impl From<Digest<16>> for PageDigest
Source§impl<const N: usize> Ord for Digest<N>
impl<const N: usize> Ord for Digest<N>
Source§impl<const N: usize> PartialOrd for Digest<N>
impl<const N: usize> PartialOrd for Digest<N>
impl<const N: usize> Eq for Digest<N>
impl<const N: usize> StructuralPartialEq for Digest<N>
Auto Trait Implementations§
impl<const N: usize> Freeze for Digest<N>
impl<const N: usize> RefUnwindSafe for Digest<N>
impl<const N: usize> Send for Digest<N>
impl<const N: usize> Sync for Digest<N>
impl<const N: usize> Unpin for Digest<N>
impl<const N: usize> UnwindSafe for Digest<N>
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