()
| 85 | |
| 86 | impl Metrics { |
| 87 | pub(crate) fn new() -> Self { |
| 88 | let this = Self(Default::default()); |
| 89 | this.start_cycle(); |
| 90 | this |
| 91 | } |
| 92 | |
| 93 | /// Return a value identifying the arena, for logging purposes. |
| 94 | #[cfg(feature = "tracing")] |
nothing calls this directly
no test coverage detected