pub trait DiagnosticsProxyInterface: Send + Sync {
type LogDebugInfoToSyslogResponseFut: Future<Output = Result<(), Error>> + Send;
// Required method
fn log_debug_info_to_syslog(&self) -> Self::LogDebugInfoToSyslogResponseFut;
}Required Associated Types§
Required Methods§
fn log_debug_info_to_syslog(&self) -> Self::LogDebugInfoToSyslogResponseFut
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".