[][src]Struct binary_heap_plus::KeyComparator

pub struct KeyComparator<F: Clone>(pub F);

The comparator ordered by key

Trait Implementations

impl<F: PartialEq + Clone> PartialEq<KeyComparator<F>> for KeyComparator<F>[src]

impl<F: Clone + Clone> Clone for KeyComparator<F>[src]

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

Performs copy-assignment from source. Read more

impl<F: Default + Clone> Default for KeyComparator<F>[src]

impl<F: Eq + Clone> Eq for KeyComparator<F>[src]

impl<F: Copy + Clone> Copy for KeyComparator<F>[src]

impl<F: Debug + Clone> Debug for KeyComparator<F>[src]

impl<K: Ord, T, F> Compare<T, T> for KeyComparator<F> where
    F: Clone + Fn(&T) -> K, 
[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 KeyComparator<F> where
    F: Send

impl<F> Sync for KeyComparator<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