Expand description
Runtime-neutral async I/O facade used by the FastCGI client.
Structs§
- Cursor
- A
Cursorwraps an in-memory buffer and provides it with aAsyncSeekimplementation. - Empty
- Reader for the
empty()function. - Error
- The error type for I/O operations of the
Read,Write,Seek, and associated traits. - Tokio
Compat runtime-tokio - A compatibility layer that allows conversion between the
tokio::ioandfutures-ioAsyncReadandAsyncWritetraits.
Enums§
- Error
Kind - A list specifying general categories of I/O error.
Traits§
- Async
Read - Read bytes asynchronously.
- Async
Read Ext - An extension trait which adds utility methods to
AsyncReadtypes. - Async
Write - Write bytes asynchronously.
- Async
Write Ext - An extension trait which adds utility methods to
AsyncWritetypes. - Tokio
Async Read Compat Ext runtime-tokio - Extension trait that allows converting a type implementing
tokio::io::AsyncReadto implementfutures_io::AsyncRead. - Tokio
Async Write Compat Ext runtime-tokio - Extension trait that allows converting a type implementing
tokio::io::AsyncWriteto implementfutures_io::AsyncWrite.
Functions§
- empty
- Constructs a new handle to an empty reader.