pub trait Tabular {
// Required methods
fn headers() -> Vec<&'static str>;
fn row(&self) -> Vec<String>;
}Required Methods§
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".