pub trait SpiBusWrite<Word: Copy = u8>: SpiBusFlush {
    fn write(&mut self, words: &[Word]) -> Result<(), Self::Error>;
}
Expand description

Write-only SPI bus

Required Methods

Write words to the slave, ignoring all the incoming words

Implementations are allowed to return before the operation is complete. See the module-level documentation for details.

Implementations on Foreign Types

Implementors