Trait embedded_hal::blocking::spi::Write[][src]

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

Blocking write

Associated Types

Error type

Required methods

Sends words to the slave, ignoring all the incoming words

Implementors