pub enum Body {
Bytes(ByteBody),
Http1(Http1Body<Encryption>),
Http2(RecvStream),
Http3(RequestStream<RecvStream, Bytes>),
}Expand description
A body of a Request.
The inner variables are streams. To get the bytes, use Body::read_to_bytes() when needed.
Also see FatRequest.
Variants§
Bytes(ByteBody)
A body of Bytes.
Can be used by HTTP/2 push to simulate a GET request, or any other extensions which wants a Kvarn response.
Http1(Http1Body<Encryption>)
A buffered HTTP/1 body.
While the HTTP/1 headers were read, it reads too much
and some of the body will be read.
Therefore, the already read bytes are stored.
Body::read_to_bytes leverages this and just
continues writing to the buffer.
Http2(RecvStream)
Available on crate feature
http2 only.An HTTP/2 body provided by [h2].