Trait bevy::utils::ConditionalSend

pub trait ConditionalSend: Send { }
Expand description

Use ConditionalSend to mark an optional Send trait bound. Useful as on certain platforms (eg. WASM), futures aren’t Send.

Implementors§

§

impl<T> ConditionalSend for T
where T: Send,