pub trait ReadChar: Read { // Provided method fn read_char(&mut self) -> Result<Option<char>> { ... } }
Trait to read char
Read a char It is a assumed that the char is represented in native byte order
errors exactly when Read::read_exact errors
Read::read_exact