Skip to main content

Streaming

Type Alias Streaming 

Source
pub type Streaming<T> = Pin<Box<dyn Send + Stream<Item = Result<T, RequestError>>>>;
Expand description

A stream of values of type Result<T, RequestError>.

Aliased Typeยง

pub struct Streaming<T> { /* private fields */ }