pub trait ResourceProviderProxyInterface: Send + Sync {
type GetDeviceTreeResponseFut: Future<Output = Result<ResourceProviderGetDeviceTreeResult, Error>> + Send;
// Required method
fn get_device_tree(&self) -> Self::GetDeviceTreeResponseFut;
}