pub trait MaybePrettyPrint {
// Required method
fn maybe_pretty_print(&self) -> Option<String>;
// Provided method
fn with_trailing_space(&self) -> String { ... }
}
pub trait MaybePrettyPrint {
// Required method
fn maybe_pretty_print(&self) -> Option<String>;
// Provided method
fn with_trailing_space(&self) -> String { ... }
}