ArmanriazirusterRor [E0046]: Nie wszystkie wdrożone elementy cechy, brak: „Podsumuj_author`

//You must implement summarize_author and not only summarize
pub trait Summary {
    fn summarize(&self) -> String;
    fn summarize_author(&self) -> String;
}
ArmanRiazi