Module rotary::io[][src]

Reading and writing sequentially from buffers.

This is called buffered I/O, and allow buffers to support sequential reading and writing to and from buffer.

Structs

Read

Make a buffer into a read adapter that implements ReadBuf.

ReadWrite

Make any mutable buffer into a write adapter that implements ReadBuf and WriteBuf.

Write

Make a mutable buffer into a write adapter that implements WriteBuf.

Traits

ReadBuf

A buffer that can keep track of how much has been read from it.

WriteBuf

A buffer that can be written to.