Trait query_interface::ObjectOrd [] [src]

pub trait ObjectOrd {
    fn obj_cmp(&self, other: &Object) -> Option<Ordering>;
}

This is an object-safe version of Ord, which is automatically implemented for all Ord + Object types. This is a support trait used to allow Object trait objects to be comparable in this way.

Required Methods

Implementors