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 DataTables
Required Methods§
Implementations§
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".