pub trait DebugBrokerProxyInterface: Send + Sync {
    type SendDebugCommandResponseFut: Future<Output = Result<i32, Error>> + Send;
    type SetTracingEnabledResponseFut: Future<Output = Result<i32, Error>> + Send;

    // Required methods
    fn send_debug_command(
        &self,
        command: &str
    ) -> Self::SendDebugCommandResponseFut;
    fn set_tracing_enabled(
        &self,
        enabled: bool
    ) -> Self::SetTracingEnabledResponseFut;
}

Required Associated Types§

Required Methods§

Implementors§