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