pub trait Hasher { fn finish(&self) -> u32; fn write(&mut self, bytes: &[u8]); }
See core::hash::Hasher for details
core::hash::Hasher
Implementers of this trait must not perform any 64-bit (or 128-bit) operation while computing the hash.
See core::hash::Hasher.finish
core::hash::Hasher.finish
See core::hash::Hasher.write
core::hash::Hasher.write