pub trait OrdWithEngines {
    // Required method
    fn cmp(&self, other: &Self, engines: &Engines) -> Ordering;
}

Required Methods§

source

fn cmp(&self, other: &Self, engines: &Engines) -> Ordering

Object Safety§

This trait is not object safe.

Implementations on Foreign Types§

source§

impl<T: OrdWithEngines + ?Sized> OrdWithEngines for &T

source§

fn cmp(&self, other: &Self, engines: &Engines) -> Ordering

source§

impl<T: OrdWithEngines> OrdWithEngines for Option<T>

source§

fn cmp(&self, other: &Self, engines: &Engines) -> Ordering

source§

impl<T: OrdWithEngines> OrdWithEngines for [T]

source§

fn cmp(&self, other: &Self, engines: &Engines) -> Ordering

source§

impl<T: OrdWithEngines> OrdWithEngines for Box<T>

source§

fn cmp(&self, other: &Self, engines: &Engines) -> Ordering

Implementors§