Struct st7735_async_low::adapters::AdapterU8[][src]

pub struct AdapterU8<W> { /* fields omitted */ }

A helper to add WriteU8s support when WriteU8 is implemented.

Supposedly not very efficient. See the Performance Consideration section of the module spi.

Implementations

impl<W> AdapterU8<W>[src]

pub fn new(w: W) -> Self[src]

Trait Implementations

impl<W: DcxPin> DcxPin for AdapterU8<W>[src]

impl<'a, W: Read<'a>> Read<'a> for AdapterU8<W>[src]

type ReadBitsType = <W as Read<'a>>::ReadBitsType

impl<'a, W: WriteU8<'a>> WriteU8<'a> for AdapterU8<W>[src]

type WriteU8Done = <W as WriteU8<'a>>::WriteU8Done

impl<'a, W: 'a> WriteU8s<'a> for AdapterU8<W> where
    W: WriteU8<'w>, 
[src]

type WriteU8sDone = RepeatU8<'a, W>

Auto Trait Implementations

impl<W> Send for AdapterU8<W> where
    W: Send

impl<W> Sync for AdapterU8<W> where
    W: Sync

impl<W> Unpin for AdapterU8<W> where
    W: 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.