pub trait Read<Word: Copy = u8>: ErrorType {
    // Required method
    fn read(&mut self) -> Result<Word, Self::Error>;
}
Expand description

Read half of a serial interface.

Some serial interfaces support different data sizes (8 bits, 9 bits, etc.); This can be encoded in this trait via the Word type parameter.

Required Methods§

source

fn read(&mut self) -> Result<Word, Self::Error>

Reads a single word from the serial interface

Implementations on Foreign Types§

source§

impl<T: Read<Word> + ?Sized, Word: Copy> Read<Word> for &mut T

source§

fn read(&mut self) -> Result<Word, Self::Error>

Implementors§