pub trait PropertyProviderProxyInterface: Send + Sync {
type GetProfileResponseFut: Future<Output = Result<Profile, Error>> + Send;
// Required method
fn get_profile(&self) -> Self::GetProfileResponseFut;
}
pub trait PropertyProviderProxyInterface: Send + Sync {
type GetProfileResponseFut: Future<Output = Result<Profile, Error>> + Send;
// Required method
fn get_profile(&self) -> Self::GetProfileResponseFut;
}