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§
fn get_os_info(&self) -> Self::GetOsInfoResponseFut
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".