pub trait Hasher32 { // Required methods fn reset(&mut self); fn write(&mut self, bytes: &[u8]); fn sum32(&self) -> u32; }