pub trait DeviceProxyInterface: Send + Sync {
type GetInfoResponseFut: Future<Output = Result<DeviceInfo, Error>> + Send;
// Required method
fn get_info(&self) -> Self::GetInfoResponseFut;
}
pub trait DeviceProxyInterface: Send + Sync {
type GetInfoResponseFut: Future<Output = Result<DeviceInfo, Error>> + Send;
// Required method
fn get_info(&self) -> Self::GetInfoResponseFut;
}