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