Struct yup_hyper_mock::MockStream [] [src]

pub struct MockStream {
    pub read: Cursor<Vec<u8>>,
    pub write: Vec<u8>,
}

A NetworkStream compatible stream that writes into memory, and reads from memory.

Fields

read
write

Methods

impl MockStream

fn new() -> MockStream

fn with_input(input: &[u8]) -> MockStream

Trait Implementations

impl Clone for MockStream

fn clone(&self) -> MockStream

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

impl Debug for MockStream

fn fmt(&self, f: &mut Formatter) -> Result

impl PartialEq for MockStream

fn eq(&self, other: &MockStream) -> bool

1.0.0fn ne(&self, other: &Rhs) -> bool

impl Read for MockStream

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 Write for MockStream

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 NetworkStream for MockStream

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>