1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16
use std::collections::HashMap; use super::DataTable; #[derive(Debug, Clone, PartialEq, Default)] pub struct DataSet { pub tables: HashMap<String, DataTable>, } impl DataSet { pub fn new() -> Self { Self { tables: HashMap::new(), } } }