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