[][src]Trait mcp794xx::interface::ReadCurrent

pub trait ReadCurrent: Sealed {
    type Error;
    fn read(&mut self) -> Result<u8, Self::Error>;
fn read_eeprom(&mut self) -> Result<u8, Self::Error>; }

Read current data

Associated Types

type Error

Error type

Loading content...

Required methods

fn read(&mut self) -> Result<u8, Self::Error>

Read current address

fn read_eeprom(&mut self) -> Result<u8, Self::Error>

Read current address from EEPROM

Loading content...

Implementors

impl<I2C, E> ReadCurrent for I2cInterface<I2C> where
    I2C: Read<Error = E>, 
[src]

type Error = Error<E>

Loading content...