We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent add9d0f commit 7fc654dCopy full SHA for 7fc654d
CHANGELOG.md
@@ -1,5 +1,10 @@
1
# Changelog
2
3
+## Unreleased
4
+
5
+* Derive `Clone` for `PolyLineError`
6
+ * https://github.com/georust/polyline/pull/54
7
8
## 0.11.0
9
10
* Speed up encode function (now runs in ~72% less time / 3.5x improvement):
src/errors.rs
@@ -2,7 +2,7 @@
use geo_types::Coord;
-#[derive(Debug, PartialEq)]
+#[derive(Debug, PartialEq, Clone)]
#[non_exhaustive]
pub enum PolylineError {
LongitudeCoordError {
0 commit comments