pub type EmptyBody = Empty<Bytes>;
Aliased Type§
struct EmptyBody { /* private fields */ }
Implementations
Trait Implementations
source§impl<D> Body for Empty<D>where
D: Buf,
impl<D> Body for Empty<D>where
D: Buf,
§type Error = Infallible
type Error = Infallible
The error type this
Body
might generate.source§fn poll_frame(
self: Pin<&mut Empty<D>>,
_cx: &mut Context<'_>,
) -> Poll<Option<Result<Frame<<Empty<D> as Body>::Data>, <Empty<D> as Body>::Error>>>
fn poll_frame( self: Pin<&mut Empty<D>>, _cx: &mut Context<'_>, ) -> Poll<Option<Result<Frame<<Empty<D> as Body>::Data>, <Empty<D> as Body>::Error>>>
Attempt to pull out the next data buffer of this stream.
source§fn is_end_stream(&self) -> bool
fn is_end_stream(&self) -> bool
Returns
true
when the end of stream has been reached. Read more