Streaming

Type Alias Streaming 

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

A Stream of values of type Result<T, S2Error>.

Aliased Typeยง

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