Macro web

Source
macro_rules! web {
    () => { ... };
    (if { $($p:tt)* } else { $($n:tt)* }) => { ... };
    ($($p:tt)*) => { ... };
}
Expand description

Indicates that this target has access to browser APIs.

This macro suppresses the provided code because #[cfg(all(target_arch = "wasm32", feature = "web"))] is not currently active.