pub trait ErrorRenderer {
type Output;
// Required method
fn render(&self, report: &DiagnosticReport) -> Self::Output;
}pub trait ErrorRenderer {
type Output;
// Required method
fn render(&self, report: &DiagnosticReport) -> Self::Output;
}