Trait embedded_hal::serial::Write[][src]

pub trait Write<Word> {
    type Error;
    fn write(&mut self, word: Word) -> Result<(), Self::Error>;
fn flush(&mut self) -> Result<(), Self::Error>; }

Write half of a serial interface

Associated Types

type Error[src]

Write error

Loading content...

Required methods

fn write(&mut self, word: Word) -> Result<(), Self::Error>[src]

Writes a single word to the serial interface

fn flush(&mut self) -> Result<(), Self::Error>[src]

Ensures that none of the previously written words are still buffered

Loading content...

Trait Implementations

impl<Word, Error> Write for dyn Write<Word, Error = Error> where
    Word: From<u8>, 
[src]

Implementors

Loading content...