Struct actix_http::body::BodyStream [−][src]
pub struct BodyStream<S> { /* fields omitted */ }Expand description
Streaming response wrapper.
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> where
S: Stream<Item = Result<Bytes, E>>,
E: Into<Box<dyn StdError>> + 'static,
impl<S, E> MessageBody for BodyStream<S> where
S: Stream<Item = Result<Bytes, E>>,
E: Into<Box<dyn StdError>> + 'static,
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.