()
| 99 | /// registered. |
| 100 | #[inline] |
| 101 | fn get_tracer() -> &'static dyn JoinSetTracer { |
| 102 | GLOBAL_TRACER.get().copied().unwrap_or(&NOOP_TRACER) |
| 103 | } |
| 104 | |
| 105 | /// Set the custom tracer for both futures and blocking closures. |
| 106 | /// |
no test coverage detected
searching dependent graphs…