pub trait DeviceInfoProxyInterface: Send + Sync {
    type GetOsInfoResponseFut: Future<Output = Result<OsInfo, Error>> + Send;

    // Required method
    fn get_os_info(&self) -> Self::GetOsInfoResponseFut;
}

Required Associated Types§

Required Methods§

Implementors§