pub trait I2CMessage<'a> {
// Required methods
fn read(data: &'a mut [u8]) -> Self;
fn write(data: &'a [u8]) -> Self;
}
Expand description
Read/Write I2C message
Required Methods§
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.