pub trait EqualsStrategy<A, B> {
// Required method
fn equals(&self, a: &A, b: &B) -> bool;
}Expand description
A strategy for “do these two geometries describe the same point set?”.
Mirrors boost::geometry::equals(g1, g2) from
boost/geometry/algorithms/equals.hpp.
Required Methods§
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".