pub fn enum_partial_eq<TEnum: Enum + ?Sized>(
    a: &TEnum,
    b: &dyn PartialReflect,
) -> Option<bool>Expand description
Compares an Enum with a PartialReflect value.
Returns true if and only if all of the following are true:
- bis an enum;
- bis the same variant as- a;
- For each field in a,bcontains a field with the same name andPartialReflect::reflect_partial_eqreturnsSome(true)for the two field values.