Trait DriverHostLauncherProxyInterface

Source
pub trait DriverHostLauncherProxyInterface: Send + Sync {
    type LaunchResponseFut: Future<Output = Result<DriverHostLauncherLaunchResult, Error>> + Send;

    // Required method
    fn launch(
        &self,
        payload: DriverHostLauncherLaunchRequest,
    ) -> Self::LaunchResponseFut;
}

Required Associated Types§

Required Methods§

Implementors§