(&self, service_name: &str)
| 330 | Model: Clone + std::fmt::Debug, |
| 331 | { |
| 332 | fn get(&self, service_name: &str) -> f64 { |
| 333 | with_metrics_registry(service_name, |registry| { |
| 334 | registry.counter_mut(self.name(), self.help()).get() |
| 335 | }) |
| 336 | } |
| 337 | |
| 338 | fn inc(&mut self, service_name: &str) { |
| 339 | with_metrics_registry(service_name, |registry| { |
nothing calls this directly
no test coverage detected