Writer

Trait Writer 

Source
pub trait Writer {
    // Required method
    fn write_byte(&mut self, value: u8);
}
Expand description

Object that can be written to, e.g. crate::Uart.

Required Methods§

Source

fn write_byte(&mut self, value: u8)

Trait Implementations§

Source§

impl WriterHelper for dyn Writer + '_

Source§

fn write<T>(&mut self, value: T)
where T: Writable,

Implementors§

Source§

impl Writer for Spi<'_>

Source§

impl Writer for SpiAsync

Source§

impl Writer for Uart<'_>