pub trait KeywordDisplay: Display {
// Required method
fn field(&self) -> String;
// Provided method
fn output(&self) -> String { ... }
}pub trait KeywordDisplay: Display {
// Required method
fn field(&self) -> String;
// Provided method
fn output(&self) -> String { ... }
}