summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLars Wirzenius <liw@liw.fi>2024-02-02 17:30:03 +0200
committerLars Wirzenius <liw@liw.fi>2024-02-02 17:36:40 +0200
commit84051a2f1dc0b90ca6e391d6e47ab6ee25734b5b (patch)
tree10dc2f630860a204480896780b5d550d0e5fec3f
parentb53cf99e22d69070d4d86581d87cf68ed5167dbd (diff)
downloadradicle-ci-broker-84051a2f1dc0b90ca6e391d6e47ab6ee25734b5b.tar.gz
feat(src/msg.rs): make RunResult implement Eq
Signed-off-by: Lars Wirzenius <liw@liw.fi>
-rw-r--r--src/msg.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/msg.rs b/src/msg.rs
index 670bb11..e11a5ac 100644
--- a/src/msg.rs
+++ b/src/msg.rs
@@ -63,7 +63,7 @@ impl fmt::Display for RunId {
}
/// The result of a CI run.
-#[derive(Debug, Clone, Serialize, Deserialize)]
+#[derive(Debug, Clone, Eq, PartialEq, Serialize, Deserialize)]
#[serde(deny_unknown_fields)]
#[serde(rename_all = "snake_case")]
#[non_exhaustive]