Skip to main content

ClientProxyInterface

Trait ClientProxyInterface 

Source
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§

Required Methods§

Dyn Compatibility§

This trait is dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety".

Implementors§