bevy/crates/bevy_ecs/src/world
Félix Lescaudey de Maneville a2b5d7a198
Fix some nightly warnings (#9672)
# Objective

Fix some nightly warnings found by running

`cargo +nightly clippy`

## Solution

Fix the following warnings:
- [x]
[elided_lifetimes_in_associated_constant](https://github.com/rust-lang/rust/issues/115010)
221986134d
- [x]
[unwrap_or_default](https://rust-lang.github.io/rust-clippy/master/index.html#/unwrap_or_default)
32e21c78f9
- [x]
[needless_pass_by_ref_mut](https://rust-lang.github.io/rust-clippy/master/index.html#/needless_pass_by_ref_mut)
c85d6d4a10

There is no breaking change, some internal `bevy_ecs` code no longer
uses a few mutable references but I don't think it should cause any
regression or be performance sensitive, but there might be some ECS
magic I'm unaware of that could break because of those changes
2023-09-02 18:35:06 +00:00
..
entity_ref.rs Fix some nightly warnings (#9672) 2023-09-02 18:35:06 +00:00
error.rs Document every public item in bevy_ecs (#8731) 2023-06-10 23:23:48 +00:00
identifier.rs Improve safety for the multi-threaded executor using UnsafeWorldCell (#8292) 2023-05-29 15:22:10 +00:00
mod.rs Fix some nightly warnings (#9672) 2023-09-02 18:35:06 +00:00
spawn_batch.rs Fix some nightly warnings (#9672) 2023-09-02 18:35:06 +00:00
unsafe_world_cell.rs Implement Debug for UnsafeWorldCell (#9460) 2023-08-20 22:00:12 +00:00
world_cell.rs Document every public item in bevy_ecs (#8731) 2023-06-10 23:23:48 +00:00