pub trait Operation: Debug + Send + Sync { // Provided methods fn get_category(&self) -> &dyn Category { ... } fn to_str(&self) -> String { ... } }