pub trait Data {
// Required methods
fn at(&self, row: usize, cell: usize) -> String;
fn rows(&self) -> usize;
fn columns(&self) -> usize;
}Expand description
Data is the interface that wraps the basic methods of a table model.
Required Methods§
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".