pub type ResultStream<'a, T> = Pin<Box<dyn Stream<Item = Result<T, ExternalError>> + Send + 'a>>;
Expand description
A boxed stream, similar to what async_trait
desugars async functions to, but hardcoded
to our standard result type.
Aliased Typeยง
struct ResultStream<'a, T> {}