pub trait Read { // Required method fn clear_rx(&self); // Provided method fn read_char(&self) -> char { ... } }
Console read functions.
Clear RX buffers, if any.
Read a single character.