murmur3
pub fn murmur3_32<T: Read>(source: &mut T, seed: u32) -> Result<u32>
Use the 32 bit variant of murmur3 to hash some Read implementation.
use std::io::Cursor; use murmur3::murmur3_32; let hash_result = murmur3_32(&mut Cursor::new("hello world"), 0);