perf

Macro perf 

Source
macro_rules! perf {
    ($($label:tt)*) => { ... };
}
Expand description

Log elapsed instruction counts since the last perf! invocation.

Records the delta in instructions between calls and emits a Log::Perf entry with the provided label (any tokens accepted by format!). Use this to highlight hot paths in long-running maintenance tasks.