浏览代码

Pod5sRuns Clone

Thomas 3 月之前
父节点
当前提交
cec679562c
共有 1 个文件被更改,包括 2 次插入2 次删除
  1. 2 2
      src/collection/pod5.rs

+ 2 - 2
src/collection/pod5.rs

@@ -77,7 +77,7 @@ impl Pod5 {
     }
 }
 
-#[derive(Debug, Serialize, Deserialize)]
+#[derive(Debug, Serialize, Deserialize, Clone)]
 pub struct Pod5sRun {
     pub run_id: String,
     pub flow_cell_id: String,
@@ -269,7 +269,7 @@ impl fmt::Display for Pod5sFlowCellStats {
     }
 }
 
-#[derive(Debug, Default, Serialize, Deserialize)]
+#[derive(Debug, Default, Serialize, Deserialize, Clone)]
 pub struct Pod5sRuns {
     pub data: Vec<Pod5sRun>,
 }