Skip to main content

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>,
        options: &LaunchOptions,
    ) -> Self::LaunchResponseFut;
    fn get_agents(
        &self,
        iterator: ServerEnd<AgentIteratorMarker>,
    ) -> Result<(), Error>;
}

Required Associated Types§

Required Methods§

Dyn Compatibility§

This trait is dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety".

Implementors§