macro_rules! traced_function {
($name:expr) => { ... };
($name:expr, $($field:tt)*) => { ... };
}Expand description
Macro for creating a traced function
This macro automatically creates a span for the function and enters it.
macro_rules! traced_function {
($name:expr) => { ... };
($name:expr, $($field:tt)*) => { ... };
}Macro for creating a traced function
This macro automatically creates a span for the function and enters it.