pub trait DeviceProxyInterface: Send + Sync {
type StartResponseFut: Future<Output = Result<DeviceStartResult, Error>> + Send;
type StopResponseFut: Future<Output = Result<DeviceStopResult, Error>> + Send;
// Required methods
fn start(
&self,
interface: ServerEnd<UsbAdbImpl_Marker>,
) -> Self::StartResponseFut;
fn stop(&self) -> Self::StopResponseFut;
}