pub trait Render { // Provided methods fn as_str(&self) -> Cow<'_, str> { ... } fn as_text(&self) -> Text<'_> { ... } }
You must either impl as_str or as_text