pub trait Pageable { // Required method fn page(&self, content: String); // Provided method fn resolve(&self) { ... } }