pub trait ToDataTable {
// Required method
fn to_datatable(&self) -> Result<DataTable>;
}Expand description
Helper trait for converting to DataTable
Required Methods§
Sourcefn to_datatable(&self) -> Result<DataTable>
fn to_datatable(&self) -> Result<DataTable>
Convert the data source to a DataTable structure
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".