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