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