pub trait LogProxyInterface: Send + Sync {
    type SetLogPacketsResponseFut: Future<Output = Result<(), Error>> + Send;

    // Required method
    fn set_log_packets(&self, enabled: bool) -> Self::SetLogPacketsResponseFut;
}

Required Associated Types§

Required Methods§

Implementors§