pub trait RuntimeLogger: Send + Sync {
// Required method
fn log(&self, record: LogRecord);
}Expand description
Contract for runtime log sinks.
Required Methods§
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".