pub trait PartialEqAny {
// Required method
fn partial_equal_any(&self, other: &dyn Any) -> bool;
}
Expand description
Compares the given value with an Any trait object. Register this trait if you want to compare two Multitrait objects with the TryPartialEq trait.