pub trait TestOutcomeReportProxyInterface: Send + Sync {
    type ReportResponseFut: Future<Output = Result<(), Error>> + Send;

    // Required method
    fn report(
        &self,
        backstop: i64,
        current_time: i64
    ) -> Self::ReportResponseFut;
}

Required Associated Types§

Required Methods§

source

fn report(&self, backstop: i64, current_time: i64) -> Self::ReportResponseFut

Implementors§