pub trait StreamHasher: FastHasher + Sized {
// Provided method
fn write_stream<R: Read>(&mut self, r: &mut R) -> Result<usize> { ... }
}
Expand description
Hasher in the streaming mode without buffer
Provided Methods§
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.