Trait microbit::hal::prelude::_embedded_hal_serial_Write [−]
pub trait _embedded_hal_serial_Write<Word> {
type Error;
fn write(&mut self, word: Word) -> Result<(), Error<Self::Error>>;
fn flush(&mut self) -> Result<(), Error<Self::Error>>;
}Expand description
Write half of a serial interface
Associated Types
type Error
type Error
Write error
Required methods
Writes a single word to the serial interface
Trait Implementations
Writes a string slice into this writer, returning whether the write succeeded. Read more