Macro trace_tick
Source macro_rules! trace_tick {
($tick_num:expr) => { ... };
($tick_num:expr, $($field:tt)*) => { ... };
}
Expand description
Create a span for engine tick processing.
§Example
ⓘuse mabi_core::trace_tick;
let _span = trace_tick!(42, device_count = 100);