macro_rules! profile_duration {
($name:expr) => { ... };
}
Expand description
Profile the remainder of the invoking lexical scope under the provided name.
If you need to split a single lexical scope into multiple durations, consider using
ProfileDuration::enter
and ProfileDuration::pivot
.