macro_rules! duration_end {
    ($category:expr, $name:expr $(, $key:expr => $val:expr)*) => { ... };
}
Expand description

Convenience macro for the duration_end function.

Example:

duration_end!("foo", "bar", "x" => 5, "y" => "boo");

is equivalent to

duration_end(cstr!("foo"), cstr!("bar"),
    &[ArgValue::of("x", 5), ArgValue::of("y", "boo")]);