pub trait TableColumn: Iden + Unquote {
    type Table: Table;
    type Unquoted: TableColumn;

    const TABLE: Self::Table;
    const QUOTE: &'static str;
}

Required Associated Types§

Required Associated Constants§

source

const TABLE: Self::Table

source

const QUOTE: &'static str

Implementors§