pub trait DeviceInfoProxyInterface: Send + Sync {
type GetOsInfoResponseFut: Future<Output = Result<OsInfo, Error>> + Send;
// Required method
fn get_os_info(&self) -> Self::GetOsInfoResponseFut;
}
pub trait DeviceInfoProxyInterface: Send + Sync {
type GetOsInfoResponseFut: Future<Output = Result<OsInfo, Error>> + Send;
// Required method
fn get_os_info(&self) -> Self::GetOsInfoResponseFut;
}