Trait query_interface::ObjectPartialEq [] [src]

pub trait ObjectPartialEq {
    fn obj_eq(&self, other: &Object) -> bool;
}

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.

Required Methods

Trait Implementations

Implementors