pub trait IntoStream<T> { // Required method fn into_stream(self) -> Rc<dyn Stream<T>>; }
Used to consume a concrete Stream and return an Rc<dyn Stream>>.