Module hyper::body

source ·
Expand description

Streaming bodies for Requests and Responses

For both Clients and Servers, requests and responses use streaming bodies, instead of complete buffering. This allows applications to not use memory they don’t need, and allows exerting back-pressure on connections by only reading when asked.

There are two pieces to this in hyper:

  • The Body trait describes all possible bodies. hyper allows any body type that implements Body, allowing applications to have fine-grained control over their streaming.
  • The Incoming concrete type, which is an implementation of Body, and returned by hyper as a “receive stream” (so, for server requests and client responses).

Structs

A cheaply cloneable and sliceable chunk of contiguous memory.
A frame of any kind related to an HTTP stream (body).
A stream of Bytes, used when receiving bodies from the network.
A Body size hint

Traits

Trait representing a streaming body of a Request or Response.
Read bytes from a buffer.