From c14ce51ea137724a17807a1d9c20cfab6270576a Mon Sep 17 00:00:00 2001 From: Alex Emmet <111742636+Alex-Emmet@users.noreply.github.com> Date: Wed, 8 Jul 2026 16:23:28 +0200 Subject: [PATCH] Quality enhancements --- src/mutations.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/mutations.rs b/src/mutations.rs index 87ed510..8c14787 100644 --- a/src/mutations.rs +++ b/src/mutations.rs @@ -2,7 +2,7 @@ use serde::{Deserialize, Serialize}; /// A single file change inferred from a sandbox diff: `hash_before` absent means the file /// was created, `hash_after` absent means it was deleted, both present means it was modified. -#[derive(Debug, Clone, Serialize, Deserialize)] +#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)] pub struct FileMutation { pub file: String, pub hash_before: Option,