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