1 2 3 4 5 6 7 8 9 10 11
/// /// Marker of unstable API. #[doc(hidden)] macro_rules! unstable_api { ($($block:item)*) => { $( #[cfg(feature = "unstable")] $block )* } }