pub trait ArgminMinMax {
// Required methods
fn min(x: &Self, y: &Self) -> Self;
fn max(x: &Self, y: &Self) -> Self;
}
Expand description
Minimum and Maximum of type T
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.