pub trait Write<W> { type Error: Debug; fn write(&mut self, words: &[W]) -> Result<(), Self::Error>; }
Blocking write
Error type
Writes words to the slave, ignoring all the incoming words
words