(&mut self)
| 110 | |
| 111 | impl Drop for TimedSpan { |
| 112 | fn drop(&mut self) { |
| 113 | let elapsed_ms = self.elapsed_ms(); |
| 114 | let span = tracing::Span::current(); |
| 115 | span.record(self.span_field, elapsed_ms as i64); |
| 116 | } |
| 117 | } |
| 118 | |
| 119 | // ============================================================================ |
nothing calls this directly
no test coverage detected