Crate kvarn_async

source ·
Expand description

Async bits for web applications.

This includes reading to bytes, a adapter between std’s Read trait and tokio’s AsyncRead, a write module for writing HTTP/1 requests and responses, and a read module for reading HTTP/1 requests and responses.

Modules§

Structs§

Functions§

  • An adaptor between std’s Read and tokio’s AsyncRead traits. This should be used when you have a foreign type which implements read (on a Vec, for example) that returns immediately, because you buffered the actual read with tokio.
  • Reads reader to end into buffer. Also see read_to_end_or_max().
  • Reads from reader to buffer until it returns zero bytes or max_length is reached. BytesMut::len is used as a starting length of buffer.