pub trait Rendering {
// Required method
fn render(&self, opts: &SummaryOptions) -> String;
// Provided method
fn render_with_suffix(&self, suffix: &str, opts: &SummaryOptions) -> String { ... }
}pub trait Rendering {
// Required method
fn render(&self, opts: &SummaryOptions) -> String;
// Provided method
fn render_with_suffix(&self, suffix: &str, opts: &SummaryOptions) -> String { ... }
}