Struct actix_http::body::BodyStream [−][src]
pub struct BodyStream<S: Unpin, E> { /* fields omitted */ }
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.