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

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

Blocking write

Associated Types

Error type

Required methods

Writes words to the slave, ignoring all the incoming words

Implementations on Foreign Types

Implementors