pub trait ReadBool: Read {
// Provided method
fn read_bool(&mut self) -> Result<bool> { ... }
}Expand description
Trait to read bool
Provided Methods§
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".