We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 66369bc commit 0dfa9daCopy full SHA for 0dfa9da
crates/bevy_ecs/src/reflect.rs
@@ -54,7 +54,7 @@ pub struct ReflectComponentFns {
54
/// Function pointer implementing [`ReflectComponent::reflect()`].
55
pub reflect: fn(EntityRef) -> Option<&dyn Reflect>,
56
/// Function pointer implementing [`ReflectComponent::reflect_mut()`].
57
- pub reflect_mut: for<'a> fn(&'a mut EntityMut<'a>) -> Option<Mut<'a, dyn Reflect>>,
+ pub reflect_mut: for<'a> fn(&'a mut EntityMut) -> Option<Mut<'a, dyn Reflect>>,
58
/// Function pointer implementing [`ReflectComponent::reflect_unchecked_mut()`].
59
pub reflect_unchecked_mut: unsafe fn(EntityRef) -> Option<Mut<dyn Reflect>>,
60
/// Function pointer implementing [`ReflectComponent::copy()`].
0 commit comments