bevy::utils

Trait ConditionalSend

source
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§

source§

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