Function bevy_reflect::enum_partial_eq
source · pub fn enum_partial_eq<TEnum: Enum>(a: &TEnum, b: &dyn Reflect) -> Option<bool>
Expand description
Compares an Enum
with a Reflect
value.
Returns true if and only if all of the following are true:
b
is an enum;b
is the same variant asa
;- For each field in
a
,b
contains a field with the same name andReflect::reflect_partial_eq
returnsSome(true)
for the two field values.