use crate::traits::{Column, Table};
#[allow(non_camel_case_types)]
pub struct variable_summary;
impl Table for variable_summary {
fn string(&self) -> String {
"variable_summary".to_string()
}
}
#[allow(non_camel_case_types)]
#[derive(Debug, Clone, Copy, PartialEq, Eq, Hash, strum::Display)]
pub enum Col {
solution_id,
source_id,
phot_variable_fundam_freq1,
classification,
}
impl Column for Col {}
#[cfg(test)]
pub fn collect_known(map: &mut std::collections::HashMap<String, Vec<String>>) {
let mut col_strings = Vec::new();
col_strings.push(Col::solution_id.to_string());
col_strings.push(Col::source_id.to_string());
col_strings.push(Col::phot_variable_fundam_freq1.to_string());
col_strings.push(Col::classification.to_string());
map.insert(variable_summary.string(), col_strings);
}