(&self, value: f64)
| 144 | |
| 145 | impl HistogramFn for Metric { |
| 146 | fn record(&self, value: f64) { |
| 147 | self.send_metric_event(MetricEvent::Histogram(value)); |
| 148 | } |
| 149 | } |
| 150 | |
| 151 | fn key_labels_to_hash_map(labels: Iter<Label>) -> HashMap<String, String> { |
no test coverage detected