pub trait ReporterProxyInterface: Send + Sync {
    type ReportResponseFut: Future<Output = Result<ReporterReportResult, Error>> + Send;

    // Required method
    fn report(&self, info: &Information) -> Self::ReportResponseFut;
}

Required Associated Types§

Required Methods§

source

fn report(&self, info: &Information) -> Self::ReportResponseFut

Implementors§