pub enum HashFunc {
Sha1(Sha1),
Sha224(Sha224),
Sha256(Sha256),
Sha384(Sha384),
Sha512(Sha512),
}
Expand description
Hash function object.
Variants§
Auto Trait Implementations§
impl Freeze for HashFunc
impl RefUnwindSafe for HashFunc
impl Send for HashFunc
impl Sync for HashFunc
impl Unpin for HashFunc
impl UnwindSafe for HashFunc
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