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