Skip to main content

TupleSortedDesc

Trait TupleSortedDesc 

Source
pub trait TupleSortedDesc<T> {
    // Required method
    fn sorted_desc(self) -> Self;
}
Expand description

Sort tuples in reverse order, currently use sort_selection

Required Methods§

Source

fn sorted_desc(self) -> Self

Sort tuples in reverse order, currently use sort_selection

Dyn Compatibility§

This trait is not dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety".

Implementors§

Source§

impl<T, S> TupleSortedDesc<T> for S
where S: TupleSortDesc<T>,