Struct yup_hyper_mock::TeeStream [] [src]

pub struct TeeStream<T> {
    pub read_write: T,
    pub copy_to: Stderr,
}

A NetworkStream compatible stream which contains another NetworkStream, whose traffic will be written to another stream. Currently that stream will always be standard error.

Fields

read_write
copy_to

Trait Implementations

impl<T> Clone for TeeStream<T> where T: Clone

fn clone(&self) -> TeeStream<T>

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

impl<T> Read for TeeStream<T> where T: Read

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

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

impl<T> Write for TeeStream<T> where T: Write

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

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

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

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

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

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

impl<T> NetworkStream for TeeStream<T> where T: NetworkStream + Send + Clone

fn peer_addr(&mut self) -> Result<SocketAddr>

fn set_read_timeout(&self, _: Option<Duration>) -> Result<()>

fn set_write_timeout(&self, _: Option<Duration>) -> Result<()>

fn close(&mut self, _how: Shutdown) -> Result<(), Error>