1 2 3 4 5 6 7 8 9 10 11
#![cfg(all(test, feature = "test_e2e"))] #[allow(unused_macros)] macro_rules! cfg_not_wasm32 { ($($item:item)*) => { $( #[cfg(not(target_arch = "wasm32"))] $item )* } }