[][src]Struct comparator::combinators::NaturalOrder

pub struct NaturalOrder { /* fields omitted */ }

A natural ordering comparator.

Trait Implementations

impl<T: ?Sized> Comparator<T> for NaturalOrder where
    T: 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 Copy for NaturalOrder
[src]

impl Default for NaturalOrder
[src]

impl Clone for NaturalOrder
[src]

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

Performs copy-assignment from source. Read more

impl Debug for NaturalOrder
[src]

Auto Trait Implementations

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]