[][src]Trait embedded_platform::io::WriteExt

pub trait WriteExt: Write {
    fn write<'a>(&'a mut self, bytes: &'a [u8]) -> Write<'a, Self>
    where
        Self: Unpin
, { ... }
fn write_all<'a>(&'a mut self, bytes: &'a [u8]) -> WriteAll<'a, Self>
    where
        Self: Unpin
, { ... }
fn shutdown(&mut self) -> Shutdown<Self>
    where
        Self: Unpin
, { ... } }

Provided methods

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

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

Important traits for Shutdown<'_, A>
fn shutdown(&mut self) -> Shutdown<Self> where
    Self: Unpin

Loading content...

Implementors

impl<A> WriteExt for A where
    A: WriteExt
[src]

Loading content...