pub trait ExperimentParams: Copy + StructOpt + ExchangeData {
    fn to_csv(self) -> String;
    fn to_vec(self) -> Vec<String>;
    fn get_exp_duration_secs(&self) -> u64;
    fn set_rate(self, rate_per_milli: u64) -> Self;
}

Required Methods§

Implementors§