pub trait ComparatorFunction<T>: Debug {
// Required method
fn compare(_: &T, _: &T) -> Ordering;
}
Expand description
A function that can compare two T
s.
Required Methods§
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.