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

Provided Methods§

source

fn compare( &self, sorter: &Self::Type, item1: &Object, item2: &Object ) -> Ordering

source

fn order(&self, sorter: &Self::Type) -> SorterOrder

Implementors§