Skip to content

Commit

Permalink
[clippy] Remove PartialEq, Eq warning
Browse files Browse the repository at this point in the history
Signed-off-by: Shinyzenith <[email protected]>
  • Loading branch information
Shinyzenith committed Sep 7, 2022
1 parent 3b8fdb6 commit e36faf9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/backend.rs
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ pub struct CaptureRegion {
}

/// Supported image encoding formats.
#[derive(Debug, Copy, Clone, PartialEq)]
#[derive(Debug, Copy, Clone, PartialEq, Eq)]
pub enum EncodingFormat {
/// Jpeg / jpg encoder.
Jpg,
Expand Down

0 comments on commit e36faf9

Please sign in to comment.