1macro_rules! cfg_tracing { 2 ($($item:item)*) => { 3 #[cfg(feature = "tracing")] 4 { 5 $( 6 $item 7 )* 8 } 9 } 10}