pub trait TestsProxyInterface: Send + Sync {
type RunResponseFut: Future<Output = Result<(), Error>> + Send;
// Required method
fn run(&self) -> Self::RunResponseFut;
}
pub trait TestsProxyInterface: Send + Sync {
type RunResponseFut: Future<Output = Result<(), Error>> + Send;
// Required method
fn run(&self) -> Self::RunResponseFut;
}