Trait I2cExt

Source
pub trait I2cExt<I2C> {
    // Required method
    fn i2c<PINS, T>(self, pins: PINS, speed: T, rcc: &mut Rcc) -> I2c<I2C, PINS>
       where PINS: Pins<I2C>,
             T: Into<Hertz>;
}

Required Methods§

Source

fn i2c<PINS, T>(self, pins: PINS, speed: T, rcc: &mut Rcc) -> I2c<I2C, PINS>
where PINS: Pins<I2C>, T: Into<Hertz>,

Dyn Compatibility§

This trait is not dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.

Implementors§