Trait port_expander::I2cBus[][src]

pub trait I2cBus: WriteRead + Write + Read {
    type BusError: From<Self::Error> + From<Self::Error> + From<Self::Error>;
}

Blanket trait for types implementing i2c::WriteRead + i2c::Write + i2c::Read

Associated Types

type BusError: From<Self::Error> + From<Self::Error> + From<Self::Error>[src]

Loading content...

Implementors

impl<T, E> I2cBus for T where
    T: WriteRead<Error = E> + Write<Error = E> + Read<Error = E>, 
[src]

type BusError = E

Loading content...