pub trait TestsProxyInterface: Send + Sync {
type RunResponseFut: Future<Output = Result<(), Error>> + Send;
// Required method
fn run(&self) -> Self::RunResponseFut;
}Required Associated Types§
Required Methods§
fn run(&self) -> Self::RunResponseFut
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".