Returns whether timing reporting is currently enabled.
(&self)
| 965 | |
| 966 | /// Returns whether timing reporting is currently enabled. |
| 967 | pub fn timings_enabled(&self) -> bool { |
| 968 | self.timings_enabled |
| 969 | .load(std::sync::atomic::Ordering::Relaxed) |
| 970 | } |
| 971 | |
| 972 | /// Test-only accessor for the backing `TraceDecay`. Exposed so |
| 973 | /// integration tests can drive the staleness pipeline directly, |
no test coverage detected