pub trait LogFormatter: Send + Sync {
// Required methods
fn min_width(&self) -> u16;
fn format(&self, width: usize, evt: &ExtLogRecord) -> Vec<Line<'_>>;
}Required Methods§
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".