pub trait I2cInit<T> {
// Required method
fn init<OS: OsInterface>(self, mcu: &mut Mcu) -> I2c<OS, T>;
}Required Methods§
fn init<OS: OsInterface>(self, mcu: &mut Mcu) -> I2c<OS, T>
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.