Skip to content

Commit

Permalink
feat: adding PartialEq/Clone for gnomad_sv::cli::query::Record (#306)
Browse files Browse the repository at this point in the history
  • Loading branch information
holtgrewe authored Nov 20, 2023
1 parent 7689744 commit fe5f978
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/gnomad_sv/cli/query.rs
Original file line number Diff line number Diff line change
Expand Up @@ -111,7 +111,7 @@ pub fn open_rocksdb_from_args(
}

/// Enumeration for the different record types that we have.
#[derive(Debug, serde::Serialize, serde::Deserialize)]
#[derive(Debug, Clone, PartialEq, serde::Serialize, serde::Deserialize)]
#[serde(rename_all = "snake_case")]
pub enum Record {
/// ExAC SV record.
Expand Down

0 comments on commit fe5f978

Please sign in to comment.