pub trait Service { // Required method fn name(&self) -> &str; // Provided method fn health_check(&self) -> bool { ... } }