Quality enhancements

This commit is contained in:
Alex Emmet 2026-07-08 16:23:28 +02:00
commit c14ce51ea1

View file

@ -2,7 +2,7 @@ use serde::{Deserialize, Serialize};
/// A single file change inferred from a sandbox diff: `hash_before` absent means the file /// 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. /// 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 struct FileMutation {
pub file: String, pub file: String,
pub hash_before: Option<String>, pub hash_before: Option<String>,