소스 검색

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>,
 }