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§
fn report(&self, backstop: i64, current_time: i64) -> Self::ReportResponseFut
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".