1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16
macro_rules! cfg_any_client { ($($item:item)*) => { $( #[cfg( any( feature = "net-async-std", feature = "net-smol", feature = "net-std", feature = "net-tokio", test ) )] $item )* } }