pub trait Tabular {
    // Required methods
    fn new(row: &PgRow) -> Self;
    fn to_row(&self) -> Row;
    fn headers() -> Row;
}

Required Methods§

source

fn new(row: &PgRow) -> Self

source

fn to_row(&self) -> Row

source

fn headers() -> Row

Object Safety§

This trait is not object safe.

Implementors§