pub trait AsyncProducer {
type Fut: Future<Output = Report>;
// Required method
fn produce(self) -> Self::Fut;
}Expand description
An async producer that builds a Report.
dev-report::Producer is synchronous. AsyncProducer is the
async equivalent that returns a future. Bridge to a sync
Producer via BlockingAsyncProducer.