[][src]Struct comparator::combinators::Comparing

pub struct Comparing<F> { /* fields omitted */ }

A comparator that compares using its key function.

Trait Implementations

impl<F, T, U> Comparator<T> for Comparing<F> where
    F: Fn(&T) -> U,
    T: ?Sized,
    U: 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<F: Copy> Copy for Comparing<F>
[src]

impl<F: Clone> Clone for Comparing<F>
[src]

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

Performs copy-assignment from source. Read more

impl<F> Debug for Comparing<F>
[src]

Auto Trait Implementations

impl<F> Send for Comparing<F> where
    F: Send

impl<F> Sync for Comparing<F> where
    F: 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]