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