Struct actix_http::body::BodyStream
source · [−]pub struct BodyStream<S: Unpin, E> { /* private fields */ }Expand description
Type represent streaming body.
Response does not contain content-length header and appropriate transfer encoding is used.
Implementations
Trait Implementations
Performs the conversion.
impl<S, E> MessageBody for BodyStream<S, E> where
S: Stream<Item = Result<Bytes, E>> + Unpin,
E: Into<Error>,
impl<S, E> MessageBody for BodyStream<S, E> where
S: Stream<Item = Result<Bytes, E>> + Unpin,
E: Into<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.
Auto Trait Implementations
impl<S, E> RefUnwindSafe for BodyStream<S, E> where
E: RefUnwindSafe,
S: RefUnwindSafe,
impl<S, E> Send for BodyStream<S, E> where
E: Send,
S: Send,
impl<S, E> Sync for BodyStream<S, E> where
E: Sync,
S: Sync,
impl<S, E> UnwindSafe for BodyStream<S, E> where
E: UnwindSafe,
S: UnwindSafe,
Blanket Implementations
Mutably borrows from an owned value. Read more
Instruments this type with the provided Span, returning an
Instrumented wrapper. 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
