pub trait Min {
// Required method
fn min_elementwise(self, other: Self) -> Self;
}Expand description
Min function in a component way
Required Methods§
Sourcefn min_elementwise(self, other: Self) -> Self
fn min_elementwise(self, other: Self) -> Self
Min function in a component way
Can cause a panic for grid if the size mismatch
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.