[][src]Struct comparator::combinators::ThenComparingByKey

pub struct ThenComparingByKey<T, F> { /* fields omitted */ }

A comparator that chains comparison function.

Trait Implementations

impl<T, F, U, W> Comparator<U> for ThenComparingByKey<T, F> where
    T: Comparator<U>,
    F: Fn(&U) -> W,
    U: ?Sized,
    W: Ord
[src]

fn reversed(self) -> Reversed<Self> where
    Self: Sized
[src]

Reverses the Comparator.

fn then_comparing<U>(self, other: U) -> ThenComparing<Self, U> where
    Self: Sized,
    U: Comparator<T>, 
[src]

Chains two comparators. Read more

fn then_comparing_by_key<F, U>(self, f: F) -> ThenComparingByKey<Self, F> where
    Self: Sized,
    F: Fn(&T) -> U,
    U: Ord
[src]

Chains a comparator with a key function. Read more

impl<T: Copy, F: Copy> Copy for ThenComparingByKey<T, F>
[src]

impl<T: Clone, F: Clone> Clone for ThenComparingByKey<T, F>
[src]

fn clone_from(&mut self, source: &Self)
1.0.0
[src]

Performs copy-assignment from source. Read more

impl<T, F> Debug for ThenComparingByKey<T, F> where
    T: Debug
[src]

Auto Trait Implementations

impl<T, F> Send for ThenComparingByKey<T, F> where
    F: Send,
    T: Send

impl<T, F> Sync for ThenComparingByKey<T, F> where
    F: Sync,
    T: Sync

Blanket Implementations

impl<F, T> Comparator for F where
    F: Fn(&T, &T) -> Ordering,
    T: ?Sized
[src]

fn reversed(self) -> Reversed<Self> where
    Self: Sized
[src]

Reverses the Comparator.

fn then_comparing<U>(self, other: U) -> ThenComparing<Self, U> where
    Self: Sized,
    U: Comparator<T>, 
[src]

Chains two comparators. Read more

fn then_comparing_by_key<F, U>(self, f: F) -> ThenComparingByKey<Self, F> where
    Self: Sized,
    F: Fn(&T) -> U,
    U: Ord
[src]

Chains a comparator with a key function. Read more

impl<T> From for T
[src]

impl<T, U> Into for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

impl<T, U> TryFrom for T where
    T: From<U>, 
[src]

type Error = !

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

impl<T> Borrow for T where
    T: ?Sized
[src]

impl<T> BorrowMut for T where
    T: ?Sized
[src]

impl<T, U> TryInto for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

impl<T> Any for T where
    T: 'static + ?Sized
[src]