Trait embedded_hal::blocking::spi::WriteIter [−][src]
pub trait WriteIter<W> { type Error; fn write_iter<WI>(&mut self, words: WI) -> Result<(), Self::Error>
where
WI: IntoIterator<Item = W>; }
Blocking write (iterator version)
Associated Types
Loading content...Required methods
fn write_iter<WI>(&mut self, words: WI) -> Result<(), Self::Error> where
WI: IntoIterator<Item = W>,
[src]
WI: IntoIterator<Item = W>,
Sends words
to the slave, ignoring all the incoming words
Implementors
Loading content...