Struct pipe::PipeWriter [] [src]

pub struct PipeWriter(_);

The Write end of a pipe (see pipe())

Methods

impl PipeWriter

fn into_inner(self) -> SyncSender<Vec<u8>>

Extracts the inner SyncSender from the writer

Trait Implementations

impl Write for PipeWriter

fn write(&mut self, buf: &[u8]) -> Result<usize>

fn flush(&mut self) -> Result<()>

fn write_all(&mut self, buf: &[u8]) -> Result<(), Error>

fn write_fmt(&mut self, fmt: Arguments) -> Result<(), Error>

fn by_ref(&mut self) -> &mut Self

fn broadcast<W>(self, other: W) -> Broadcast<Self, W> where W: Write

Derived Implementations

impl Clone for PipeWriter

fn clone(&self) -> PipeWriter

fn clone_from(&mut self, source: &Self)