[−][src]Module futures_util::io
IO
This module contains a number of functions for working with
AsyncRead
, AsyncWrite
, AsyncSeek
, and AsyncBufRead
types, including
the AsyncReadExt
, AsyncWriteExt
, AsyncSeekExt
, and AsyncBufReadExt
traits which add methods to the AsyncRead
, AsyncWrite
, AsyncSeek
,
and AsyncBufRead
types.
This module is only available when the io
and std
features of this
library is activated, and it is activated by default.
Structs
AllowStdIo | A simple wrapper type which allows types which implement only
implement |
BufReader | The |
BufWriter | Wraps a writer and buffers its output. |
Close | Future for the |
CopyBufInto | Future for the |
CopyInto | Future for the |
Flush | Future for the |
IntoSink | Sink for the |
IoSlice | A buffer type used with |
IoSliceMut | A buffer type used with |
Lines | Stream for the |
Read | Future for the |
ReadExact | Future for the |
ReadHalf | The readable half of an object returned from |
ReadLine | Future for the |
ReadToEnd | Future for the |
ReadToString | Future for the |
ReadUntil | Future for the |
ReadVectored | Future for the |
Seek | Future for the |
Window | A owned window around an underlying buffer. |
Write | Future for the |
WriteAll | Future for the |
WriteHalf | The writable half of an object returned from |
WriteVectored | Future for the |
Enums
SeekFrom | Enumeration of possible methods to seek within an I/O object. |
Traits
AsyncBufRead | Read bytes asynchronously. |
AsyncBufReadExt | An extension trait which adds utility methods to |
AsyncRead | Read bytes asynchronously. |
AsyncReadExt | An extension trait which adds utility methods to |
AsyncSeek | Seek bytes asynchronously. |
AsyncSeekExt | An extension trait which adds utility methods to |
AsyncWrite | Write bytes asynchronously. |
AsyncWriteExt | An extension trait which adds utility methods to |