pub trait Hasher64 {
    fn reset(&mut self);
fn write(&mut self, bytes: &[u8]);
fn sum64(&self) -> u64; }

Required methods

Implementors