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§

source

fn set_profile(&self, intl_profile: &Profile) -> Self::SetProfileResponseFut

Implementors§