pub trait Summary { // Required method fn summarize_author(&self) -> String; // Provided method fn summarize(&self) -> String { ... } }