[][src]Struct classific::BothEq

pub struct BothEq<T: ?Sized, C: EqClass<T>, N: EqClass<T>>(_, _, _);

Trait Implementations

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

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

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

impl<T, C, N> EqClass<T> for BothEq<T, C, N> where
    T: ?Sized,
    C: EqClass<T>,
    N: EqClass<T>, 
[src]

Auto Trait Implementations

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

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

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

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

impl<T: ?Sized, C, N> UnwindSafe for BothEq<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> EqClass<T> for F where
    F: Fn(&T, &T) -> bool,
    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.