Armanriazirusterror [e0046]: No todos los elementos de rasgos implementados, faltantes: `resumize_author`

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