Skip to main content

TestsProxyInterface

Trait TestsProxyInterface 

Source
pub trait TestsProxyInterface: Send + Sync {
    type RunResponseFut: Future<Output = Result<(), Error>> + Send;

    // Required method
    fn run(&self) -> Self::RunResponseFut;
}

Required Associated Types§

Required Methods§

Source

fn run(&self) -> Self::RunResponseFut

Dyn Compatibility§

This trait is dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety".

Implementors§