Function stream
Source pub fn stream<Output>(sipper: impl Sipper<Output>) -> impl Stream<Item = Output>
Available on crate feature sipper only.
Expand description
Turns a Sipper into a Stream.
This is only possible if the Output and Progress types of the Sipper match!