summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLars Wirzenius <liw@liw.fi>2019-10-04 10:37:51 +0300
committerLars Wirzenius <liw@liw.fi>2019-10-04 10:37:51 +0300
commitb42f5d49d7e7d76b2120183e65e966048794a176 (patch)
treeeea52f0ef37f7ffcb9e1918646c48fe5968c92a4
parent067c4e9bec1e7ad5f11be401c28e49b04e7c47b2 (diff)
downloadroadmap-b42f5d49d7e7d76b2120183e65e966048794a176.tar.gz
Add: Eq to Step
-rw-r--r--src/step.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/step.rs b/src/step.rs
index aae69ff..4140471 100644
--- a/src/step.rs
+++ b/src/step.rs
@@ -5,7 +5,7 @@ use super::Status;
/// See the crate documentation for an example. You
/// probably don't want to create steps manually, but via the roadmap
/// YAML parsing function.
-#[derive(Clone, Debug, PartialEq)]
+#[derive(Clone, Debug, PartialEq, Eq)]
pub struct Step {
name: String,
status: Status,