pub struct Hasher { /* private fields */ }Expand description
The streaming hasher.
Feed it with update as many times as suits the caller
and the answer does not depend on where the boundaries fell.
The stack is 54 chaining values because that is the deepest a tree can get: one entry per bit of the chunk counter, and a chunk is a kibibyte.
Implementations§
Trait Implementations§
Auto Trait Implementations§
impl Freeze for Hasher
impl RefUnwindSafe for Hasher
impl Send for Hasher
impl Sync for Hasher
impl Unpin for Hasher
impl UnsafeUnpin for Hasher
impl UnwindSafe for Hasher
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