pub trait Write<Word> {
    type Error;

    fn write(&mut self, word: Word) -> Result<(), Self::Error>;
    fn flush(&mut self) -> Result<(), Self::Error>;
}
Expand description

Write half of a serial interface

Required Associated Types§

Write error

Required Methods§

Writes a single word to the serial interface

Ensures that none of the previously written words are still buffered

Implementors§