pub type Streaming<T> = Pin<Box<dyn Send + Stream<Item = Result<T, S2Error>>>>;
A Stream of values of type Result<T, S2Error>.
Stream
Result<T, S2Error>
pub struct Streaming<T> { /* private fields */ }