pub trait DiagnosticRenderer {
// Required method
fn render(&self, diagnostic: &Diagnostic) -> String;
}Required Methods§
fn render(&self, diagnostic: &Diagnostic) -> String
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".