pub trait Tabular {
const FILE_NAME: &'static str;
// Required methods
fn new(row: &Row) -> Self;
fn to_row(&self) -> Row;
fn headers() -> Row;
}Required Associated Constants§
Required Methods§
Object Safety§
This trait is not object safe.