[][src]Struct cc3220sf_hal::i2c::I2c

pub struct I2c<I2C, PINS> { /* fields omitted */ }

Implementations

impl<SCL, SDA> I2c<I2CA0, (SCL, SDA)>[src]

pub fn i2ca0(i2c: I2CA0, pins: (SCL, SDA), speed: I2cSpeed) -> Self where
    SCL: SclPin<I2CA0>,
    SDA: SdaPin<I2CA0>, 
[src]

Trait Implementations

impl<PINS> Read for I2c<I2CA0, PINS>[src]

type Error = I2cError

Error type

impl<PINS> Write for I2c<I2CA0, PINS>[src]

type Error = I2cError

Error type

impl<PINS> WriteRead for I2c<I2CA0, PINS>[src]

type Error = I2cError

Error type

Auto Trait Implementations

impl<I2C, PINS> Send for I2c<I2C, PINS> where
    I2C: Send,
    PINS: Send

impl<I2C, PINS> Sync for I2c<I2C, PINS> where
    I2C: Sync,
    PINS: Sync

impl<I2C, PINS> Unpin for I2c<I2C, PINS> where
    I2C: Unpin,
    PINS: Unpin

Blanket Implementations

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

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

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

impl<T> From<T> for T[src]

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

impl<T> Same<T> for T

type Output = T

Should always be Self

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

type Error = Infallible

The type returned in the event of a conversion error.

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

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

The type returned in the event of a conversion error.