macro_rules! cfg_not_wasm {
($($item:item)*) => { ... };
}Expand description
Enables feature-specific code.
Use this macro instead of cfg(not(target_arch = "wasm32")) to generate docs properly.
macro_rules! cfg_not_wasm {
($($item:item)*) => { ... };
}Enables feature-specific code.
Use this macro instead of cfg(not(target_arch = "wasm32")) to generate docs properly.