Struct bitflags::__core::io::Tee [] [src]

pub struct Tee<R, W> {
    // some fields omitted
}
Deprecated since 1.6.0

: error handling semantics unclear and don't seem to have an ergonomic resolution

An adaptor which will emit all read data to a specified writer as well.

This struct is generally created by calling tee() on a reader. Please see the documentation of tee() for more details.

Trait Implementations

impl<R, W> Read for Tee<R, W> where R: Read, W: Write

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

1.0.0fn read_to_end(&mut self, buf: &mut Vec<u8>) -> Result<usize, Error>

1.0.0fn read_to_string(&mut self, buf: &mut String) -> Result<usize, Error>

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

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

1.0.0fn bytes(self) -> Bytes<Self>

fn chars(self) -> Chars<Self>

1.0.0fn chain<R>(self, next: R) -> Chain<Self, R> where R: Read

1.0.0fn take(self, limit: u64) -> Take<Self>

fn tee<W>(self, out: W) -> Tee<Self, W> where W: Write