Trait write_hasher::MinDigest
source · pub trait MinDigest {
type Output;
// Required methods
fn update(&mut self, data: impl AsRef<[u8]>);
fn finalize(self) -> Self::Output;
}
Expand description
A minimal version of [Digest
][digest::digest] trait that is used to implement the WriteHasher
and all implementations of the Digest trait.