pub trait Formatter: Send + Sync {
// Required methods
fn dispatch_file_violations(&self, linted_file: &LintedFile);
fn dispatch_file_skip(&self, fname: &str, reason: &str);
fn completion_message(&self, count: usize);
}Required Methods§
fn dispatch_file_violations(&self, linted_file: &LintedFile)
fn dispatch_file_skip(&self, fname: &str, reason: &str)
fn completion_message(&self, count: usize)
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".