[][src]Trait embedded_platform::i2c::I2cReadExt

pub trait I2cReadExt: I2cRead {
    fn begin_read(&mut self, address: u8) -> BeginRead<Self>
    where
        Self: Unpin
, { ... } }

Extension functions for instances of I2cRead.

Provided methods

Important traits for BeginRead<'_, A>
fn begin_read(&mut self, address: u8) -> BeginRead<Self> where
    Self: Unpin

Initiates a read operation on the specified address.

The returned object can be used to read the actual data from the address. The user must read the data until completion, or else it might leave this I²C peripheral in an incomplete state.

Loading content...

Implementors

impl<'r, A> I2cReadExt for A where
    A: I2cRead
[src]

Loading content...