pub trait TupleSortedBy<T> {
// Required method
fn sorted_by(self, cmp: impl FnMut(&T, &T) -> Ordering) -> Self;
}Expand description
Sort tuples, currently use sort_selection
Required Methods§
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.