Struct term::WriterWrapperUnstable [-] [+] [src]

pub struct WriterWrapper {
    // some fields omitted
}

A hack to work around the fact that Box<Write + Send> does not currently implement Write.

Trait Implementations

impl Write for WriterWrapper

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