[][src]Struct icm20689::SpiInterface

pub struct SpiInterface<SPI, CSN> { /* fields omitted */ }

This combines the SPI peripheral and associated control pins such as:

  • CSN : Chip Select (aka SS or Slave Select)

Implementations

impl<SPI, CSN, CommE, PinE> SpiInterface<SPI, CSN> where
    SPI: Write<u8, Error = CommE> + Transfer<u8, Error = CommE>,
    CSN: OutputPin<Error = PinE>, 
[src]

pub fn new(spi: SPI, csn: CSN) -> Self[src]

pub fn release(self) -> (SPI, CSN)[src]

Release owned resources

Trait Implementations

impl<SPI, CSN, CommE, PinE> SensorInterface for SpiInterface<SPI, CSN> where
    SPI: Write<u8, Error = CommE> + Transfer<u8, Error = CommE>,
    CSN: OutputPin<Error = PinE>, 
[src]

type InterfaceError = Error<CommE, PinE>

Interface associated error type

Auto Trait Implementations

impl<SPI, CSN> Send for SpiInterface<SPI, CSN> where
    CSN: Send,
    SPI: Send

impl<SPI, CSN> Sync for SpiInterface<SPI, CSN> where
    CSN: Sync,
    SPI: Sync

impl<SPI, CSN> Unpin for SpiInterface<SPI, CSN> where
    CSN: Unpin,
    SPI: 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.