pub type BoxedBody = BoxBody<Bytes, Error>;
Aliased Type§
struct BoxedBody { /* private fields */ }
Implementations
Trait Implementations
Source§impl<D, E> Body for BoxBody<D, E>where
D: Buf,
impl<D, E> Body for BoxBody<D, E>where
D: Buf,
Source§fn poll_frame(
self: Pin<&mut BoxBody<D, E>>,
cx: &mut Context<'_>,
) -> Poll<Option<Result<Frame<<BoxBody<D, E> as Body>::Data>, <BoxBody<D, E> as Body>::Error>>>
fn poll_frame( self: Pin<&mut BoxBody<D, E>>, cx: &mut Context<'_>, ) -> Poll<Option<Result<Frame<<BoxBody<D, E> as Body>::Data>, <BoxBody<D, E> 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