pub enum HashComputer {
Blake3(Hasher),
Sha256(Sha256),
Sha384(Sha384),
Sha512(Sha512),
}Variants§
Auto Trait Implementations§
impl Freeze for HashComputer
impl RefUnwindSafe for HashComputer
impl Send for HashComputer
impl Sync for HashComputer
impl Unpin for HashComputer
impl UnsafeUnpin for HashComputer
impl UnwindSafe for HashComputer
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