Trait SpecReadByte

Source
trait SpecReadByte {
    // Required method
    fn spec_read_byte(&mut self) -> Option<Result<u8>>;
}
Expand description

For the specialization of Bytes::next.

Required Methods§

Implementors§

Source§

impl SpecReadByte for StdinLock<'_>

Source§

impl<R> SpecReadByte for BufReader<R>
where Self: Read,

Source§

impl<R> SpecReadByte for R
where Self: Read,