macro_rules! section {
($name:expr) => { ... };
($name:expr, $($field:tt)+) => { ... };
}Expand description
Open a profiling section. Equivalent to tracing::info_span!(...).entered(),
but named for clarity at the call site.
macro_rules! section {
($name:expr) => { ... };
($name:expr, $($field:tt)+) => { ... };
}Open a profiling section. Equivalent to tracing::info_span!(...).entered(),
but named for clarity at the call site.