pub trait Named<'a> { // Provided methods fn name(&self) -> &str { ... } fn to_cow(&self) -> RcCowString<'a> { ... } }