pub struct Sha512Digest(/* private fields */);
Expand description
The digest output by the SHA-512 hash function.
Trait Implementations§
Source§impl Debug for Sha512Digest
impl Debug for Sha512Digest
Source§impl Digest for Sha512Digest
impl Digest for Sha512Digest
Source§const DIGEST_LEN: usize = 64usize
const DIGEST_LEN: usize = 64usize
The length in bytes of this digest.
Source§fn from_bytes(bytes: Self::Bytes) -> Self
fn from_bytes(bytes: Self::Bytes) -> Self
Constructs a new digest from bytes.
Source§impl Display for Sha512Digest
impl Display for Sha512Digest
Source§impl PartialEq for Sha512Digest
impl PartialEq for Sha512Digest
impl Eq for Sha512Digest
Auto Trait Implementations§
impl Freeze for Sha512Digest
impl RefUnwindSafe for Sha512Digest
impl Send for Sha512Digest
impl Sync for Sha512Digest
impl Unpin for Sha512Digest
impl UnwindSafe for Sha512Digest
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