Trait avr_tester::Writable

source ·
pub trait Writable {
    // Required method
    fn write(&self, tx: &mut dyn Writer);
}
Expand description

Value that can be transmitted through a Writer.

Required Methods§

source

fn write(&self, tx: &mut dyn Writer)

Implementations on Foreign Types§

source§

impl Writable for str

source§

fn write(&self, tx: &mut dyn Writer)

source§

impl Writable for [u8]

source§

fn write(&self, tx: &mut dyn Writer)

source§

impl Writable for u8

source§

fn write(&self, tx: &mut dyn Writer)

source§

impl<const N: usize> Writable for [u8; N]

source§

fn write(&self, tx: &mut dyn Writer)

source§

impl Writable for String

source§

fn write(&self, tx: &mut dyn Writer)

source§

impl<T> Writable for &Twhere T: Writable + ?Sized,

source§

fn write(&self, tx: &mut dyn Writer)

Implementors§