conditional_send

Macro conditional_send 

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

Indicates the current target requires additional Send bounds.

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