summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLars Wirzenius <liw@liw.fi>2019-10-04 10:27:59 +0300
committerLars Wirzenius <liw@liw.fi>2019-10-04 10:27:59 +0300
commitad42aa514d2860ce9dcdb009bc713cbfa627012b (patch)
tree62248cbf322a554b9b60cbbe7fdd1d1985e10121
parente15d7829afa488f86af87018e61604ede33bbae3 (diff)
downloadroadmap-ad42aa514d2860ce9dcdb009bc713cbfa627012b.tar.gz
Add: Eq to Status
-rw-r--r--src/status.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/status.rs b/src/status.rs
index 2edfbd1..3ac06b0 100644
--- a/src/status.rs
+++ b/src/status.rs
@@ -5,7 +5,7 @@
/// example, a step is inferred to be blocked if any of it
/// dependencies are not finished.
-#[derive(Clone, Copy, Debug, PartialEq)]
+#[derive(Clone, Copy, Debug, Eq, PartialEq)]
pub enum Status {
Unknown,
Goal,