[][src]Struct classific::AtLeast

pub struct AtLeast<T: ?Sized, F: Fn(&T) -> bool>(_, _);

See at_least.

Trait Implementations

impl<T: Clone + ?Sized, F: Clone + Fn(&T) -> bool> Clone for AtLeast<T, F>[src]

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

impl<T: Copy + ?Sized, F: Copy + Fn(&T) -> bool> Copy for AtLeast<T, F>[src]

impl<T: Debug + ?Sized, F: Debug + Fn(&T) -> bool> Debug for AtLeast<T, F>[src]

Auto Trait Implementations

impl<T: ?Sized, F> RefUnwindSafe for AtLeast<T, F> where
    F: RefUnwindSafe,
    T: RefUnwindSafe

impl<T, F> !Send for AtLeast<T, F>

impl<T, F> !Sync for AtLeast<T, F>

impl<T: ?Sized, F> Unpin for AtLeast<T, F> where
    F: Unpin

impl<T: ?Sized, F> UnwindSafe for AtLeast<T, F> where
    F: 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.