macro_rules! multi_threaded {
() => { ... };
(if { $($p:tt)* } else { $($n:tt)* }) => { ... };
($($p:tt)*) => { ... };
}
Expand description
Indicates multithreading support.
This macro passes the provided code because #[cfg(all(not(target_arch = "wasm32"), feature = "multi_threaded"))]
is currently active.