pub trait Write<W> {
    type Error;

    fn write(&mut self, words: &[W]) -> Result<(), Self::Error>;
}
Expand description

Blocking write

Required Associated Types§

Error type

Required Methods§

Sends words to the slave, ignoring all the incoming words

Implementors§