pub type StepStream = Pin<Box<dyn Stream<Item = Result<Step>> + Send>>;Expand description
A boxed, Send stream of Steps — the output of
Algorithm::run_stream. Boxed so the trait method that produces it keeps
Arc<dyn Algorithm> object-safe.
Aliased Type§
pub struct StepStream { /* private fields */ }