pub struct I2CReply {
pub address: u8,
pub register: u8,
pub data: Vec<u8>,
}Expand description
Defines an I2C reply.
Fields§
§address: u8§register: u8§data: Vec<u8>Trait Implementations§
Auto Trait Implementations§
impl Freeze for I2CReply
impl RefUnwindSafe for I2CReply
impl Send for I2CReply
impl Sync for I2CReply
impl Unpin for I2CReply
impl UnsafeUnpin for I2CReply
impl UnwindSafe for I2CReply
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more