Trait sorted::SortOrder [] [src]

pub trait SortOrder<T>: Clone + Copy {
    fn cmp(_: &T, _: &T) -> Ordering;

    fn by_sorting<'a, S: 'a + Sortable<Item = T>>(s: S) -> Sorted<'a, S, Self> { ... }
}

Required Methods

Provided Methods

Implementors