Function actix_web_lab::body::new_infallible_body_stream
source ยท pub fn new_infallible_body_stream<S: Stream<Item = Bytes>>(
stream: S,
) -> BodyStream<InfallibleStream<S>>
Expand description
Constructs a new BodyStream
from an infallible byte chunk stream.
This could be stabilized into Actix Web as BodyStream::from_infallible()
.