pub trait TryPartialEq {
    fn try_eq(&self, other: &Self) -> Option<bool>;
}
Expand description

Tries to compare the MultitraitObject with another object and returns Some(bool) when the underlying type implements PartialEq and has the PartialEqAny trait registered on the object.

Required methods

Implementors