Trait fasthash::HasherExt [] [src]

pub trait HasherExt: Hasher {
    fn finish_ext(&self) -> u128;

    fn write_u128(&mut self, i: u128) { ... }
    fn write_i128(&mut self, i: i128) { ... }
}

A trait which represents the ability to hash an arbitrary stream of bytes.

Required Methods

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

Provided Methods

Writes a single u128 into this hasher.

Writes a single i128 into this hasher.

Implementors