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