pub trait SorterImpl: SorterImplExt + ObjectImpl {
    fn compare(&self, item1: &Object, item2: &Object) -> Ordering { ... }
    fn order(&self) -> SorterOrder { ... }
}

Provided Methods§

Implementors§