diff --git a/webgestalt_lib/src/methods/ora.rs b/webgestalt_lib/src/methods/ora.rs index 6cdef35..d539db8 100644 --- a/webgestalt_lib/src/methods/ora.rs +++ b/webgestalt_lib/src/methods/ora.rs @@ -4,6 +4,7 @@ use rayon::prelude::*; use statrs::distribution::{DiscreteCDF, Hypergeometric}; use std::sync::{Arc, Mutex}; +#[derive(Clone)] pub struct ORAConfig { pub min_overlap: i64, pub min_set_size: usize, diff --git a/webgestalt_lib/src/stat.rs b/webgestalt_lib/src/stat.rs index c429a81..4a375d9 100644 --- a/webgestalt_lib/src/stat.rs +++ b/webgestalt_lib/src/stat.rs @@ -3,6 +3,7 @@ struct Carrier { original_order: usize, } +#[derive(Clone)] pub enum AdjustmentMethod { BH, None,