[][src]Struct classific::CompareThen

pub struct CompareThen<T: ?Sized, C: Comparator<T>, N: Comparator<T>>(_, _, _);

Trait Implementations

impl<T: Clone + ?Sized, C: Clone + Comparator<T>, N: Clone + Comparator<T>> Clone for CompareThen<T, C, N>[src]

impl<T, C, N> Comparator<T> for CompareThen<T, C, N> where
    T: ?Sized,
    C: Comparator<T>,
    N: Comparator<T>, 
[src]

impl<T: Copy + ?Sized, C: Copy + Comparator<T>, N: Copy + Comparator<T>> Copy for CompareThen<T, C, N>[src]

impl<T: Debug + ?Sized, C: Debug + Comparator<T>, N: Debug + Comparator<T>> Debug for CompareThen<T, C, N>[src]

Auto Trait Implementations

impl<T: ?Sized, C, N> RefUnwindSafe for CompareThen<T, C, N> where
    C: RefUnwindSafe,
    N: RefUnwindSafe,
    T: RefUnwindSafe

impl<T, C, N> !Send for CompareThen<T, C, N>

impl<T, C, N> !Sync for CompareThen<T, C, N>

impl<T: ?Sized, C, N> Unpin for CompareThen<T, C, N> where
    C: Unpin,
    N: Unpin

impl<T: ?Sized, C, N> UnwindSafe for CompareThen<T, C, N> where
    C: UnwindSafe,
    N: UnwindSafe,
    T: RefUnwindSafe

Blanket Implementations

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

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

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

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

impl<T> From<T> for T[src]

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

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

type Owned = T

The resulting type after obtaining ownership.

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

type Error = Infallible

The type returned in the event of a conversion error.

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

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

The type returned in the event of a conversion error.