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
impl<S, E> MessageBody for BodyStream<S> where
S: Stream<Item = Result<Bytes, E>>,
E: 'static + Into<Box<dyn Error + 'static, Global>>,
impl<S, E> MessageBody for BodyStream<S> where
S: Stream<Item = Result<Bytes, E>>,
E: 'static + Into<Box<dyn Error + 'static, Global>>,
pub fn poll_next(
self: Pin<&mut BodyStream<S>>,
cx: &mut Context<'_>
) -> Poll<Option<Result<Bytes, <BodyStream<S> as MessageBody>::Error>>>
pub 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.
Try to convert into the complete chunk of body bytes. Read more
Auto Trait Implementations
impl<S> RefUnwindSafe for BodyStream<S> where
S: RefUnwindSafe,
impl<S> Send for BodyStream<S> where
S: Send,
impl<S> Sync for BodyStream<S> where
S: Sync,
impl<S> UnwindSafe for BodyStream<S> where
S: UnwindSafe,
Blanket Implementations
Mutably borrows from an owned value. Read more
pub fn vzip(self) -> V
Attaches the provided Subscriber
to this type, returning a
WithDispatch
wrapper. Read more
Attaches the current default Subscriber
to this type, returning a
WithDispatch
wrapper. Read more