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