bevy/crates/bevy_reflect/bevy_reflect_derive/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
..
impls Fix the clippy::explicit_iter_loop lint (#9834) 2023-09-19 03:35:22 +00:00
container_attributes.rs bevy_reflect: Opt-out attribute for TypePath (#9140) 2023-08-10 00:37:56 +00:00
derive_data.rs Fix CI for Rust 1.72 (#9562) 2023-08-25 12:34:24 +00:00
documentation.rs bevy_reflect: FromReflect Ergonomics Implementation (#6056) 2023-06-29 01:31:34 +00:00
enum_utility.rs bevy_reflect: Allow #[reflect(default)] on enum variant fields (#8514) 2023-05-29 15:29:29 +00:00
field_attributes.rs bevy_reflect: Fix combined field attributes (#9322) 2023-08-07 23:04:00 +00:00
fq_std.rs Enable deriving Reflect on structs with generic types (#7364) 2023-01-28 00:12:06 +00:00
from_reflect.rs bevy_reflect: FromReflect Ergonomics Implementation (#6056) 2023-06-29 01:31:34 +00:00
lib.rs bevy_reflect: Opt-out attribute for TypePath (#9140) 2023-08-10 00:37:56 +00:00
reflect_value.rs reflect: stable type path v2 (#7184) 2023-06-05 20:31:20 +00:00
registration.rs bevy_reflect: FromReflect Ergonomics Implementation (#6056) 2023-06-29 01:31:34 +00:00
trait_reflection.rs Fix beta clippy lints (#7154) 2023-01-11 09:51:22 +00:00
type_path.rs Fix typo in NamedTypePathDef (#9102) 2023-07-10 17:02:16 +00:00
type_uuid.rs update syn, encase, glam and hexasphere (#8573) 2023-05-16 01:24:17 +00:00
utility.rs bevy_reflect: Opt-out attribute for TypePath (#9140) 2023-08-10 00:37:56 +00:00