Trait SortedWith

Source
pub trait SortedWith<T> {
    // Required method
    fn sort(&self) -> &T;
}

Required Methods§

Source

fn sort(&self) -> &T

Implementations on Foreign Types§

Source§

impl<A, B> SortedWith<B> for (A, B)

Source§

fn sort(&self) -> &B

Implementors§

Source§

impl<X, T> SortedWith<T> for Sorted<X, T>