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