pub trait WriteU8s<'a> {
type WriteU8sDone: 'a + Future<Output = ()>;
// Required method
fn write_u8s(&'a mut self, data: &'a [u8]) -> Self::WriteU8sDone;
}Expand description
Defines how a sequence of u8 or u16 is written with the SCK and SDA
pins.