[][src]Struct binary_heap_plus::FnComparator

pub struct FnComparator<F>(pub F);

The comparator defined by closure

Trait Implementations

impl<F: PartialEq> PartialEq<FnComparator<F>> for FnComparator<F>[src]

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

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

Performs copy-assignment from source. Read more

impl<F: Default> Default for FnComparator<F>[src]

impl<F: Eq> Eq for FnComparator<F>[src]

impl<F: Copy> Copy for FnComparator<F>[src]

impl<F: Debug> Debug for FnComparator<F>[src]

impl<T, F> Compare<T, T> for FnComparator<F> where
    F: Clone + Fn(&T, &T) -> Ordering
[src]

fn compares_lt(&self, l: &L, r: &R) -> bool[src]

Checks if l is less than r.

fn compares_le(&self, l: &L, r: &R) -> bool[src]

Checks if l is less than or equal to r.

fn compares_ge(&self, l: &L, r: &R) -> bool[src]

Checks if l is greater than or equal to r.

fn compares_gt(&self, l: &L, r: &R) -> bool[src]

Checks if l is greater than r.

fn compares_eq(&self, l: &L, r: &R) -> bool[src]

Checks if l is equal to r.

fn compares_ne(&self, l: &L, r: &R) -> bool[src]

Checks if l is not equal to r.

fn borrowing(self) -> Borrowing<Self, L, R>[src]

Borrows the comparator's parameters before comparing them. Read more

fn rev(self) -> Rev<Self>[src]

Reverses the ordering of the comparator. Read more

fn swap(self) -> Swap<Self>[src]

Swaps the comparator's parameters, maintaining the underlying ordering. Read more

fn then<D>(self, then: D) -> Then<Self, D> where
    D: Compare<L, R>, 
[src]

Lexicographically combines the comparator with another. Read more

Auto Trait Implementations

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

impl<F> Sync for FnComparator<F> where
    F: Sync

Blanket Implementations

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

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

type Owned = T

The resulting type after obtaining ownership.

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

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.

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

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

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

impl<F, L, R> Compare<L, R> for F where
    F: Fn(&L, &R) -> Ordering + ?Sized,
    L: ?Sized,
    R: ?Sized
[src]

fn compares_lt(&self, l: &L, r: &R) -> bool[src]

Checks if l is less than r.

fn compares_le(&self, l: &L, r: &R) -> bool[src]

Checks if l is less than or equal to r.

fn compares_ge(&self, l: &L, r: &R) -> bool[src]

Checks if l is greater than or equal to r.

fn compares_gt(&self, l: &L, r: &R) -> bool[src]

Checks if l is greater than r.

fn compares_eq(&self, l: &L, r: &R) -> bool[src]

Checks if l is equal to r.

fn compares_ne(&self, l: &L, r: &R) -> bool[src]

Checks if l is not equal to r.

fn borrowing(self) -> Borrowing<Self, L, R>[src]

Borrows the comparator's parameters before comparing them. Read more

fn rev(self) -> Rev<Self>[src]

Reverses the ordering of the comparator. Read more

fn swap(self) -> Swap<Self>[src]

Swaps the comparator's parameters, maintaining the underlying ordering. Read more

fn then<D>(self, then: D) -> Then<Self, D> where
    D: Compare<L, R>, 
[src]

Lexicographically combines the comparator with another. Read more