LauncherProxyInterface

Trait LauncherProxyInterface 

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

    // Required methods
    fn launch(
        &self,
        agent: ServerEnd<DebugAgentMarker>,
    ) -> Self::LaunchResponseFut;
    fn get_agents(
        &self,
        iterator: ServerEnd<AgentIteratorMarker>,
    ) -> Result<(), Error>;
}

Required Associated Types§

Required Methods§

Implementors§