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§
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>
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".