[][src]Struct display_interface_spi::SPIInterface

pub struct SPIInterface<SPI, DC, CS> { /* fields omitted */ }

SPI display interface.

This combines the SPI peripheral and a data/command as well as a chip-select pin

Implementations

impl<SPI, DC, CS> SPIInterface<SPI, DC, CS> where
    SPI: Write<u8>,
    DC: OutputPin,
    CS: OutputPin
[src]

pub fn new(spi: SPI, dc: DC, cs: CS) -> Self[src]

Create new SPI interface for communication with a display driver

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

Consume the display interface and return the underlying peripherial driver and GPIO pins used by it

Trait Implementations

impl<SPI, DC, CS> WriteOnlyDataCommand for SPIInterface<SPI, DC, CS> where
    SPI: Write<u8>,
    DC: OutputPin,
    CS: OutputPin
[src]

Auto Trait Implementations

impl<SPI, DC, CS> Send for SPIInterface<SPI, DC, CS> where
    CS: Send,
    DC: Send,
    SPI: Send

impl<SPI, DC, CS> Sync for SPIInterface<SPI, DC, CS> where
    CS: Sync,
    DC: Sync,
    SPI: Sync

impl<SPI, DC, CS> Unpin for SPIInterface<SPI, DC, CS> where
    CS: Unpin,
    DC: 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, 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.