Type Alias mz_persist::location::ResultStream

source ·
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> { /* private fields */ }