Trait avr_tester::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<'a> WriterHelper for dyn Writer + 'a

source§

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

Implementors§

source§

impl Writer for Spi<'_>

source§

impl Writer for Uart<'_>