[][src]Trait bl602_hal::prelude::_embedded_hal_serial_Write

pub trait _embedded_hal_serial_Write<Word> {
    type Error;
    fn try_write(&mut self, word: Word) -> Result<(), Error<Self::Error>>;
fn try_flush(&mut self) -> Result<(), Error<Self::Error>>; }

Write half of a serial interface

Associated Types

type Error

Write error

Loading content...

Required methods

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

Writes a single word to the serial interface

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

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

impl<PINS> Write<u8> for Serial<UART, PINS>[src]

type Error = Error

Loading content...