Skip to content

Commit

Permalink
Also derive Clone trait for OperationBin and OperationData
Browse files Browse the repository at this point in the history
  • Loading branch information
juliannguyen4 authored Feb 6, 2024
1 parent 378ff60 commit 171b478
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/operations/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -57,6 +57,7 @@ pub enum OperationType {
}

#[doc(hidden)]
#[derive(Clone)]
pub enum OperationData<'a> {
None,
Value(&'a Value),
Expand All @@ -68,6 +69,7 @@ pub enum OperationData<'a> {
}

#[doc(hidden)]
#[derive(Clone)]
pub enum OperationBin<'a> {
None,
All,
Expand Down

0 comments on commit 171b478

Please sign in to comment.