pub type OutputStream<T> = BoxStream<'static, Result<Output<T>>>;
Expand description

Stream build logs and final data.

Aliased Type§

struct OutputStream<T> { /* private fields */ }

Trait Implementations§

source§

impl<T> OutputStreamExt for OutputStream<T>

§

type Output = T

Type that this stream resolves out.
source§

fn resolve<'async_trait>( self ) -> Pin<Box<dyn Future<Output = Result<Self::Output>> + Send + 'async_trait>>
where Self: 'async_trait,

Get final data, ignoring all log messages.