pub trait ObjectPartialEq {
// Required method
fn obj_eq(&self, other: &dyn Object) -> bool;
}Expand description
This is an object-safe version of PartialEq, which is automatically
implemented for all PartialEq + Object types. This is a support trait used to
allow Object trait objects to be comparable in this way.