Trait embedded_io::blocking::BufRead
source · [−]pub trait BufRead: Io {
fn fill_buf(&mut self) -> Result<&[u8], Self::Error>;
fn consume(&mut self, amt: usize);
}
Expand description
Blocking buffered reader.
Semantics are the same as std::io::BufRead
, check its documentation for details.