Relax Sync bound on anonymous Commands (#7014)
# Objective Any closure with the signature `FnOnce(&mut World)` implicitly implements the trait `Command` due to a blanket implementation. However, this implementation unnecessarily has the `Sync` bound, which limits the types that can be used. ## Solution Remove the bound. --- ## Changelog - `Command` closures no longer need to implement the marker trait `std::marker::Sync`.
This commit is contained in:
parent
b3d59060db
commit
83b602a77c
@ -709,7 +709,7 @@ impl<'w, 's, 'a> EntityCommands<'w, 's, 'a> {
|
|||||||
|
|
||||||
impl<F> Command for F
|
impl<F> Command for F
|
||||||
where
|
where
|
||||||
F: FnOnce(&mut World) + Send + Sync + 'static,
|
F: FnOnce(&mut World) + Send + 'static,
|
||||||
{
|
{
|
||||||
fn write(self, world: &mut World) {
|
fn write(self, world: &mut World) {
|
||||||
self(world);
|
self(world);
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user