macro_rules! reset_trace {
() => { ... };
($tag:ident) => { ... };
}Expand description
Resets the trace for a specific tag or the default tag.
This clears all recorded events for the specified tag.
ยงUsage
reset_trace!(): Resets the trace for the default tag.reset_trace!(tag): Resets the trace for a specific tag.