pub trait LauncherProxyInterface: Send + Sync {
    type LaunchResponseFut: Future<Output = Result<LauncherLaunchResult, Error>> + Send;

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

Required Associated Types§

Required Methods§

source

fn launch(&self, configuration: &LaunchConfiguration) -> Self::LaunchResponseFut

Implementors§