pub trait Write<Word: Copy = u8>: ErrorType {
    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 Methods

Writes a single word to the serial interface

Ensures that none of the previously written words are still buffered

Trait Implementations

Writes a string slice into this writer, returning whether the write succeeded. Read more

Writes a char into this writer, returning whether the write succeeded. Read more

Glue for usage of the write! macro with implementors of this trait. Read more

Implementations on Foreign Types

Implementors