pub trait SorterImplExt: ObjectSubclass {
    // Required methods
    fn parent_compare(&self, item1: &Object, item2: &Object) -> Ordering;
    fn parent_order(&self) -> SorterOrder;
}

Required Methods§

source

fn parent_compare(&self, item1: &Object, item2: &Object) -> Ordering

source

fn parent_order(&self) -> SorterOrder

Implementors§

source§

impl<T> SorterImplExt for Twhere T: SorterImpl,