Function bevy_reflect::tuple_struct_partial_eq
source · pub fn tuple_struct_partial_eq<S: TupleStruct>(
a: &S,
b: &dyn Reflect
) -> Option<bool>
Expand description
Compares a TupleStruct
with a Reflect
value.
Returns true if and only if all of the following are true:
b
is a tuple struct;b
has the same number of fields asa
;Reflect::reflect_partial_eq
returnsSome(true)
for pairwise fields ofa
andb
.
Returns None
if the comparison couldn’t even be performed.