pub trait TakeExtremum {
// Required methods
fn take_min(self, other: Self) -> Self;
fn take_max(self, other: Self) -> Self;
}
Available on crate feature
algorithm_group_by
only.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.