diff --git a/geo-types/src/coordinate.rs b/geo-types/src/coordinate.rs index 736c5ff99..4f6ecb12e 100644 --- a/geo-types/src/coordinate.rs +++ b/geo-types/src/coordinate.rs @@ -17,6 +17,8 @@ where pub y: T, } +impl std::cmp::Eq for Coordinate where T: std::cmp::Eq {} + impl From<(T, T)> for Coordinate { fn from(coords: (T, T)) -> Self { Coordinate {