1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16
macro_rules! cfg_status_report { ($($item:item)*) => { $( #[cfg(feature = "status-report")] #[cfg_attr(docsrs, doc(cfg(feature = "status-report")))] $item )* }; ($($item:stmt)*) => { $( #[cfg(feature = "status-report")] $item )* } }