[][src]Trait embedded_platform::io::ReadExt

pub trait ReadExt: Read {
    fn read<'a>(&'a mut self, buffer: &'a mut [u8]) -> Read<'a, Self>
    where
        Self: Unpin
, { ... }
fn read_exact<'a>(&'a mut self, buffer: &'a mut [u8]) -> ReadExact<'a, Self>
    where
        Self: Unpin
, { ... } }

Provided methods

Important traits for Read<'_, A>
fn read<'a>(&'a mut self, buffer: &'a mut [u8]) -> Read<'a, Self> where
    Self: Unpin

Important traits for ReadExact<'_, A>
fn read_exact<'a>(&'a mut self, buffer: &'a mut [u8]) -> ReadExact<'a, Self> where
    Self: Unpin

Loading content...

Implementors

impl<A> ReadExt for A where
    A: Read
[src]

Loading content...