pub trait HasherExt: Hasher {
// Required method
fn finish_ext(&self) -> u128;
}
Expand description
A trait which represents the ability to hash an arbitrary stream of bytes.
Required Methods§
Sourcefn finish_ext(&self) -> u128
fn finish_ext(&self) -> u128
Completes a round of hashing, producing the output hash generated.