Skip to content

Commit

Permalink
derive Clone for enum
Browse files Browse the repository at this point in the history
  • Loading branch information
enola-dkfz committed May 25, 2023
1 parent 2ee71a6 commit 4d6ed43
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ pub struct ObfCache {
pub cache: HashMap<(Sensitivity, Count, Bin), u64>,
}

#[derive(PartialEq, Eq, PartialOrd, Ord)]
#[derive(PartialEq, Eq, PartialOrd, Ord, Clone)]
pub enum ObfuscateBelow10Mode {
Zero,
Ten,
Expand Down

0 comments on commit 4d6ed43

Please sign in to comment.