1 2 3 4 5 6 7 8 9 10 11 12
#![allow(unused_macros)] /// Helper macro for appending feature tags to docs. macro_rules! cfg_rt { ($($item:item)*) => { $( #[cfg(feature = "rt")] #[cfg_attr(docsrs, doc(cfg(feature = "rt")))] $item )* } }