pub trait Repo {
// Required methods
fn load_table(&self, name: &str) -> Result<DataTable, String>;
fn load_data_set(&self, name: &str) -> Result<DataSet, String>;
}
Expand description
Repo is a collection of DataTable
s
pub trait Repo {
// Required methods
fn load_table(&self, name: &str) -> Result<DataTable, String>;
fn load_data_set(&self, name: &str) -> Result<DataSet, String>;
}
Repo is a collection of DataTable
s