TupleSorted

Trait TupleSorted 

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

Sort tuples, currently use sort_selection

Required Methods§

Source

fn sorted(self) -> Self

Sort tuples, currently use sort_selection

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.

Implementors§

Source§

impl<T, S> TupleSorted<T> for S
where S: TupleSort<T>,