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

pub trait WriteIter<W = u8> {
    type Error: Error;
    fn write_iter<WI>(&mut self, words: WI) -> Result<(), Self::Error>
    where
        WI: IntoIterator<Item = W>
; }
Expand description

Blocking write (iterator version)

Associated Types

Error type

Required methods

Writes words to the slave, ignoring all the incoming words

Implementations on Foreign Types

Implementors