Trait port_expander::I2cBus

source ·
pub trait I2cBus: I2c {
    type BusError: From<<Self as ErrorType>::Error>;
}
Expand description

Blanket trait for types implementing `i2c::I2c

Required Associated Types§

Object Safety§

This trait is not object safe.

Implementors§

source§

impl<T, E> I2cBus for T
where T: I2c<Error = E>,

§

type BusError = E