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