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§
fn set_log_packets(&self, enabled: bool) -> Self::SetLogPacketsResponseFut
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".