1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20
/// The `cfg_debug`
macro_rules! cfg_std {
($($item:item)*) => {
$(
#[cfg(feature = "std")]
#[cfg_attr(doc_cfg, doc(cfg(feature = "std")))]
$item
)*
}
}
/// The `cfg_random`
macro_rules! cfg_random {
($($item:item)*) => {
$(
#[cfg(feature = "random")]
#[cfg_attr(doc_cfg, doc(cfg(feature = "random")))]
$item
)*
}
}