[][src]Struct mpu9250::I2cDevice

pub struct I2cDevice<I2C> { /* fields omitted */ }

An I2C device. Use I2CDevice when the MPU9250 is connected via I2C

Methods

impl<E, I2C> I2cDevice<I2C> where
    I2C: Read<Error = E> + Write<Error = E> + WriteRead<Error = E>, 
[src]

pub fn new(i2c: I2C) -> Self[src]

Create a new I2C device

Trait Implementations

impl<E, I2C> Device for I2cDevice<I2C> where
    I2C: Read<Error = E> + Write<Error = E> + WriteRead<Error = E>, 
[src]

type Error = E

The type of error for all results

fn read(&mut self, reg: Register) -> Result<u8, Self::Error>[src]

Read a single value from the register

fn modify<F>(&mut self, reg: Register, f: F) -> Result<(), Self::Error> where
    F: FnOnce(u8) -> u8, 
[src]

Modify the value in the register using the provided closure. The closure accepts the current value of the register, permitting conditional checks before modification. Read more

Auto Trait Implementations

impl<I2C> Send for I2cDevice<I2C> where
    I2C: Send

impl<I2C> Sync for I2cDevice<I2C> where
    I2C: Sync

Blanket Implementations

impl<T> From for 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, 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.

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

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

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

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

impl<T> Same for T

type Output = T

Should always be Self

impl<SS, SP> SupersetOf for SP where
    SS: SubsetOf<SP>,