pub trait EncodingPuppetProxyInterface: Send + Sync {
type EncodeResponseFut: Future<Output = Result<EncodingPuppetEncodeResult, Error>> + Send;
// Required method
fn encode(&self, record: &Record) -> Self::EncodeResponseFut;
}
pub trait EncodingPuppetProxyInterface: Send + Sync {
type EncodeResponseFut: Future<Output = Result<EncodingPuppetEncodeResult, Error>> + Send;
// Required method
fn encode(&self, record: &Record) -> Self::EncodeResponseFut;
}