Struct actix_web::body::BodyStream
source · pub struct BodyStream<S> { /* private fields */ }
Expand description
Streaming response wrapper.
Response does not contain Content-Length
header and appropriate transfer encoding is used.
Implementations§
Trait Implementations§
source§impl<S, E> MessageBody for BodyStream<S>where
S: Stream<Item = Result<Bytes, E>>,
E: Into<Box<dyn Error + 'static, Global>> + 'static,
impl<S, E> MessageBody for BodyStream<S>where
S: Stream<Item = Result<Bytes, E>>,
E: Into<Box<dyn Error + 'static, Global>> + 'static,
source§fn poll_next(
self: Pin<&mut BodyStream<S>>,
cx: &mut Context<'_>
) -> Poll<Option<Result<Bytes, <BodyStream<S> as MessageBody>::Error>>>
fn poll_next(
self: Pin<&mut BodyStream<S>>,
cx: &mut Context<'_>
) -> Poll<Option<Result<Bytes, <BodyStream<S> as MessageBody>::Error>>>
Attempts to pull out the next value of the underlying Stream
.
Empty values are skipped to prevent BodyStream
’s transmission being
ended on a zero-length chunk, but rather proceed until the underlying
Stream
ends.