pub fn set_partial_eq<M>(
a: &M,
b: &(dyn PartialReflect + 'static),
) -> Option<bool>where
M: Set,Expand description
Compares a Set with a PartialReflect value.
Returns true if and only if all of the following are true:
bis a set;bis the same length asa;- For each value pair in
a,bcontains the value too, andPartialReflect::reflect_partial_eqreturnsSome(true)for the two values.
Returns None if the comparison couldn’t even be performed.