pub trait SorterImplExt: ObjectSubclass {
    fn parent_compare(
        &self,
        sorter: &Self::Type,
        item1: &Object,
        item2: &Object
    ) -> Ordering; fn parent_order(&self, sorter: &Self::Type) -> SorterOrder; }

Required methods

Implementors