Trait HasherExt

Source
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§

Source

fn finish_ext(&self) -> u128

Completes a round of hashing, producing the output hash generated.

Implementors§

Source§

impl HasherExt for fasthash_fork::spooky::Hasher128

Source§

impl HasherExt for fasthash_fork::t1ha::t1ha2::Hasher128

Source§

impl HasherExt for fasthash_fork::xxh3::Hasher128

Source§

impl<T> HasherExt for T
where T: TrivialHasher + FastHasher<Output = u128>,