pub trait ReadBool: Read { // Provided method fn read_bool(&mut self) -> Result<bool> { ... } }
Trait to read bool
Read a bool
errors exactly when Read::read_exact errors
Read::read_exact