pub trait LauncherProxyInterface: Send + Sync {
type LaunchResponseFut: Future<Output = Result<LauncherLaunchResult, Error>> + Send;
// Required method
fn launch(&self, payload: LaunchOptions) -> Self::LaunchResponseFut;
}pub trait LauncherProxyInterface: Send + Sync {
type LaunchResponseFut: Future<Output = Result<LauncherLaunchResult, Error>> + Send;
// Required method
fn launch(&self, payload: LaunchOptions) -> Self::LaunchResponseFut;
}