Enum embedded_hal::i2c::blocking::Operation [−][src]
pub enum Operation<'a> {
Read(&'a mut [u8]),
Write(&'a [u8]),
}
Expand description
Transactional I2C operation.
Several operations can be combined as part of a transaction.
Variants
Read data into the provided buffer
Write data from the provided buffer