Struct rotor_test::MemIo [] [src]

pub struct MemIo(_);

In memory stream

The struct pretends to be mio::Evented but it have unimplemented panic when actually added to the loop. I.e. it should be used in tests which use plain state machine, and not the event loop.

Clarification: it implements Read/Write but, it's not a pipe. I.e. buffers for Read and Write are separate. You use push_xxx methods to add data for the next Read::read.

You should clone the stream. Feed one to the application and second one to the unit testing code.

Methods

impl MemIo
[src]

Create a stream

Stream start empty

Push some bytes to an input buffer of an application

Marks input as closed so application gets end-of-stream event on next read

Get output as a string

This is created by String::from_utf8_lossy so kinda works for binary data too, but not exactly. If you need to compare some non-textual data use output_bytes()

The data in the buffer are not discarded. Next call will return same data again.

Get data in the output buffer

The data in the buffer are not discarded. Next call will return same data again.

Trait Implementations

impl Clone for MemIo
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl SocketError for MemIo
[src]

impl Debug for MemIo
[src]

Formats the value using the given formatter.

impl Read for MemIo
[src]

Pull some bytes from this source into the specified buffer, returning how many bytes were read. Read more

Read all bytes until EOF in this source, placing them into buf. Read more

Read all bytes until EOF in this source, placing them into buf. Read more

Read the exact number of bytes required to fill buf. Read more

Creates a "by reference" adaptor for this instance of Read. Read more

Transforms this Read instance to an Iterator over its bytes. Read more

🔬 This is a nightly-only experimental API. (io)

the semantics of a partial read/write of where errors happen is currently unclear and may change

Transforms this Read instance to an Iterator over chars. Read more

Creates an adaptor which will chain this stream with another. Read more

Creates an adaptor which will read at most limit bytes from it. Read more

impl Write for MemIo
[src]

Write a buffer into this object, returning how many bytes were written. Read more

Flush this output stream, ensuring that all intermediately buffered contents reach their destination. Read more

Attempts to write an entire buffer into this write. Read more

Writes a formatted string into this writer, returning any error encountered. Read more

Creates a "by reference" adaptor for this instance of Write. Read more

impl Evented for MemIo
[src]