(&self, value: f64)
| 120 | |
| 121 | impl GaugeFn for Metric { |
| 122 | fn increment(&self, value: f64) { |
| 123 | self.send_metric_event(MetricEvent::Gauge(GaugeEvent::Incr(value))); |
| 124 | } |
| 125 | |
| 126 | fn decrement(&self, value: f64) { |
| 127 | self.send_metric_event(MetricEvent::Gauge(GaugeEvent::Incr(-value))); |
no test coverage detected