[][src]Struct stm32f072b_disco::i2c::I2c

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

I2C abstraction

Methods

impl<I2C, SCLPIN, SDAPIN> I2c<I2C, SCLPIN, SDAPIN> where
    I2C: Deref<Target = RegisterBlock>, 
[src]

pub fn release(self) -> (I2C, (SCLPIN, SDAPIN))[src]

impl<SCLPIN, SDAPIN> I2c<I2C1, SCLPIN, SDAPIN>[src]

pub fn i2c1(
    i2c: I2C1,
    pins: (SCLPIN, SDAPIN),
    speed: KiloHertz,
    rcc: &mut Rcc
) -> I2c<I2C1, SCLPIN, SDAPIN> where
    SCLPIN: SclPin<I2C1>,
    SDAPIN: SdaPin<I2C1>, 
[src]

impl<SCLPIN, SDAPIN> I2c<I2C2, SCLPIN, SDAPIN>[src]

pub fn i2c2(
    i2c: I2C2,
    pins: (SCLPIN, SDAPIN),
    speed: KiloHertz,
    rcc: &mut Rcc
) -> I2c<I2C2, SCLPIN, SDAPIN> where
    SCLPIN: SclPin<I2C2>,
    SDAPIN: SdaPin<I2C2>, 
[src]

Trait Implementations

impl<I2C, SCLPIN, SDAPIN> Write for I2c<I2C, SCLPIN, SDAPIN> where
    I2C: Deref<Target = RegisterBlock>, 
[src]

type Error = Error

Error type

impl<I2C, SCLPIN, SDAPIN> WriteRead for I2c<I2C, SCLPIN, SDAPIN> where
    I2C: Deref<Target = RegisterBlock>, 
[src]

type Error = Error

Error type

Auto Trait Implementations

impl<I2C, SCLPIN, SDAPIN> Send for I2c<I2C, SCLPIN, SDAPIN> where
    I2C: Send,
    SCLPIN: Send,
    SDAPIN: Send

impl<I2C, SCLPIN, SDAPIN> Sync for I2c<I2C, SCLPIN, SDAPIN> where
    I2C: Sync,
    SCLPIN: Sync,
    SDAPIN: Sync

Blanket Implementations

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

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