Skip to content

Commit

Permalink
SFT-3631: Derive PartialEq and Eq.
Browse files Browse the repository at this point in the history
* src/lib.rs (VerifyHeaderError): Derive PartialEq and Eq.
  • Loading branch information
jeandudey committed May 16, 2024
1 parent 7e84ff4 commit 281b441
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion firmware/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -228,7 +228,7 @@ impl Signature {
}

/// Errors that can happen when verifying the firmware header.
#[derive(Debug)]
#[derive(Debug, PartialEq, Eq)]
pub enum VerifyHeaderError {
/// Unknown magic bytes.
UnknownMagic(u32),
Expand Down

0 comments on commit 281b441

Please sign in to comment.