Trait st7735_async_low::spi::WriteU8s[][src]

pub trait WriteU8s<'a> {
    type WriteU8sDone: 'a + Future<Output = ()>;
    fn write_u8s(&'a mut self, data: &'a [u8]) -> Self::WriteU8sDone;
}

Defines how a sequence of u8 or u16 is written with the SCK and SDA pins.

Associated Types

type WriteU8sDone: 'a + Future<Output = ()>[src]

Loading content...

Required methods

fn write_u8s(&'a mut self, data: &'a [u8]) -> Self::WriteU8sDone[src]

Loading content...

Implementors

impl<'a, 's, S: DcxPin + WriteU8s<'a>> WriteU8s<'a> for RamWriter<'s, S>[src]

type WriteU8sDone = <S as WriteU8s<'a>>::WriteU8sDone

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

type WriteU8sDone = RepeatU8<'a, W>

impl<'a, W: WriteU8s<'a>> WriteU8s<'a> for AdapterU8s<W>[src]

type WriteU8sDone = <W as WriteU8s<'a>>::WriteU8sDone

Loading content...