bevy/crates/bevy_asset/src
Joseph d5d355ae1f
Fix the clippy::explicit_iter_loop lint (#9834)
# Objective

Replace instances of

```rust
for x in collection.iter{_mut}() {
```

with

```rust
for x in &{mut} collection {
```

This also changes CI to no longer suppress this lint. Note that since
this lint only shows up when using clippy in pedantic mode, it was
probably unnecessary to suppress this lint in the first place.
2023-09-19 03:35:22 +00:00
..
io don't ignore some EventKind::Modify (#9767) 2023-09-13 05:45:39 +00:00
processor Fix the clippy::explicit_iter_loop lint (#9834) 2023-09-19 03:35:22 +00:00
server Copy on Write AssetPaths (#9729) 2023-09-09 23:15:10 +00:00
assets.rs Bevy Asset V2 (#8624) 2023-09-07 02:07:27 +00:00
event.rs Bevy Asset V2 (#8624) 2023-09-07 02:07:27 +00:00
folder.rs Bevy Asset V2 (#8624) 2023-09-07 02:07:27 +00:00
handle.rs Asset v2: Asset path serialization fix (#9756) 2023-09-13 05:43:01 +00:00
id.rs Bevy Asset V2 (#8624) 2023-09-07 02:07:27 +00:00
lib.rs Fix the clippy::explicit_iter_loop lint (#9834) 2023-09-19 03:35:22 +00:00
loader.rs Copy on Write AssetPaths (#9729) 2023-09-09 23:15:10 +00:00
meta.rs Bevy Asset V2 (#8624) 2023-09-07 02:07:27 +00:00
path.rs Manual "Reflect Value" AssetPath impl to fix dynamic linking (#9752) 2023-09-13 18:29:19 +00:00
reflect.rs Bevy Asset V2 (#8624) 2023-09-07 02:07:27 +00:00
saver.rs Copy on Write AssetPaths (#9729) 2023-09-09 23:15:10 +00:00