pub struct Sha512Hash { /* private fields */ }Expand description
SHA-512 hash function.
Trait Implementations§
Source§impl Clone for Sha512Hash
impl Clone for Sha512Hash
Source§fn clone(&self) -> Sha512Hash
fn clone(&self) -> Sha512Hash
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 Hash for Sha512Hash
impl Hash for Sha512Hash
Source§const OUTPUT_SIZE: usize = 64
const OUTPUT_SIZE: usize = 64
Output size in bytes (e.g. 32 for SHA-256, 64 for SHA-512).
Auto Trait Implementations§
impl Freeze for Sha512Hash
impl RefUnwindSafe for Sha512Hash
impl Send for Sha512Hash
impl Sync for Sha512Hash
impl Unpin for Sha512Hash
impl UnsafeUnpin for Sha512Hash
impl UnwindSafe for Sha512Hash
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