pub trait OutputStreamExt {
    type Output;

    // Required method
    fn resolve<'async_trait>(
        self
    ) -> Pin<Box<dyn Future<Output = Result<Self::Output>> + Send + 'async_trait>>
       where Self: 'async_trait;
}
Expand description

Trait to get the final data from an OutputStream.

Required Associated Types§

source

type Output

Type that this stream resolves out.

Required Methods§

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.

Implementors§