Trait embedded_hal::blocking::i2c::WriteIter [−][src]
pub trait WriteIter { type Error; fn write<B>(&mut self, addr: u8, bytes: B) -> Result<(), Self::Error>
where
B: IntoIterator<Item = u8>; }
Blocking write (iterator version)
Associated Types
Loading content...Required methods
fn write<B>(&mut self, addr: u8, bytes: B) -> Result<(), Self::Error> where
B: IntoIterator<Item = u8>,
[src]
B: IntoIterator<Item = u8>,