[][src]Struct i2cdev2::core::I2CMsg

pub struct I2CMsg<'a> { /* fields omitted */ }

Rust version of i2c_msg

Methods

impl<'a> I2CMsg<'a>[src]

pub fn new(addr: u16, data: &'a mut Vec<u8>) -> Self[src]

Create I2CMsg from address and data buffer

pub fn set_flags(&mut self, flags: u16)[src]

Set flags

pub fn flags(&mut self) -> u16[src]

Get flags

pub fn set_addr(&mut self, addr: u16)[src]

Set addr

pub fn addr(&mut self) -> u16[src]

Get addr

pub fn set_data(&mut self, data: &'a mut Vec<u8>)[src]

Set data

pub fn data(&mut self) -> Vec<u8>[src]

Get addr

pub fn set_read(&mut self)[src]

Sets the read flag

Auto Trait Implementations

impl<'a> Send for I2CMsg<'a>

impl<'a> Sync for I2CMsg<'a>

Blanket Implementations

impl<T> From for T[src]

impl<T, U> Into for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T> Borrow for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> BorrowMut for T where
    T: ?Sized
[src]

impl<T, U> TryInto for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.