Skip to content

Commit

Permalink
If a type can trivially be copy, let's make it copy
Browse files Browse the repository at this point in the history
  • Loading branch information
michaeldjeffrey committed Jun 6, 2024
1 parent a9e4846 commit 5d7bd20
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions coverage_point_calculator/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -175,7 +175,7 @@ impl RewardableRadio {
}
}

#[derive(Debug, Clone)]
#[derive(Debug, Clone, Copy)]
pub enum BoostedHexStatus {
Eligible,
WifiLocationScoreBelowThreshold(Decimal),
Expand Down Expand Up @@ -261,7 +261,7 @@ impl RadioType {
}
}

#[derive(Debug, Clone, PartialEq)]
#[derive(Debug, Clone, Copy, PartialEq)]
pub enum RadioThreshold {
Verified,
UnVerified,
Expand Down

0 comments on commit 5d7bd20

Please sign in to comment.