pub trait ResourceProviderProxyInterface: Send + Sync {
type GetDeviceTreeResponseFut: Future<Output = Result<ResourceProviderGetDeviceTreeResult, Error>> + Send;
// Required method
fn get_device_tree(&self) -> Self::GetDeviceTreeResponseFut;
}Required Associated Types§
type GetDeviceTreeResponseFut: Future<Output = Result<ResourceProviderGetDeviceTreeResult, Error>> + Send
Required Methods§
fn get_device_tree(&self) -> Self::GetDeviceTreeResponseFut
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".