pub trait Reportable {
// Required method
fn report_mode(&self) -> ReportMode;
}Expand description
For warnings/errors which have a ReportMode that dictates when they are reported
Required Methods§
fn report_mode(&self) -> ReportMode
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".