use crate::traits::{Column, Table};
#[allow(non_camel_case_types)]
pub struct dual;
impl Table for dual {
fn string(&self) -> String {
"dual".to_string()
}
}
#[allow(non_camel_case_types)]
#[derive(Debug, Clone, Copy, PartialEq, Eq, Hash, strum::Display)]
pub enum Col {
dummy,
}
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::dummy.to_string());
map.insert(dual.string(), col_strings);
}