tokio/runtime/scheduler/multi_thread/
trace_mock.rs

1pub(super) struct TraceStatus {}
2
3impl TraceStatus {
4    pub(super) fn new(_: usize) -> Self {
5        Self {}
6    }
7
8    pub(super) fn trace_requested(&self) -> bool {
9        false
10    }
11}