pub trait PartialEqAny {
    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.

Required methods

Implementors