pub trait LogProxyInterface: Send + Sync {
type SetLogPacketsResponseFut: Future<Output = Result<(), Error>> + Send;
// Required method
fn set_log_packets(&self, enabled: bool) -> Self::SetLogPacketsResponseFut;
}
pub trait LogProxyInterface: Send + Sync {
type SetLogPacketsResponseFut: Future<Output = Result<(), Error>> + Send;
// Required method
fn set_log_packets(&self, enabled: bool) -> Self::SetLogPacketsResponseFut;
}