pub trait HashReaderDetector {
// Provided methods
fn is_hash_reader(&self) -> bool { ... }
fn as_hash_reader_mut(&mut self) -> Option<&mut dyn HashReaderMut> { ... }
}Expand description
Trait to detect and manipulate HashReader instances
Provided Methods§
fn is_hash_reader(&self) -> bool
fn as_hash_reader_mut(&mut self) -> Option<&mut dyn HashReaderMut>
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".