pub trait Hasher16 {
    fn reset(&mut self);
fn write(&mut self, bytes: &[u8]);
fn sum16(&self) -> u16; }

Required methods

Implementors