pub trait Body {
type Data: Buf;
type Error;
fn poll_frame(
self: Pin<&mut Self>,
cx: &mut Context<'_>
) -> Poll<Option<Result<Frame<Self::Data>, Self::Error>>>;
fn is_end_stream(&self) -> bool { ... }
fn size_hint(&self) -> SizeHint { ... }
}Expand description
Trait representing a streaming body of a Request or Response.
Data is streamed via the poll_data function, which asynchronously yields T: Buf values. The
size_hint function provides insight into the total number of bytes that will be streamed.
The poll_trailers function returns an optional set of trailers used to finalize the request /
response exchange. This is mostly used when using the HTTP/2.0 protocol.
Required Associated Types
Required Methods
Provided Methods
sourcefn is_end_stream(&self) -> bool
fn is_end_stream(&self) -> bool
Returns true when the end of stream has been reached.
An end of stream means that both poll_data and poll_trailers will
return None.
A return value of false does not guarantee that a value will be
returned from poll_stream or poll_trailers.