pub trait ConfigReceiverPuppetProxyInterface: Send + Sync {
type GetConfigResponseFut: Future<Output = Result<ReceiverConfig, Error>> + Send;
// Required method
fn get_config(&self) -> Self::GetConfigResponseFut;
}
pub trait ConfigReceiverPuppetProxyInterface: Send + Sync {
type GetConfigResponseFut: Future<Output = Result<ReceiverConfig, Error>> + Send;
// Required method
fn get_config(&self) -> Self::GetConfigResponseFut;
}