Trait ormlite_core::model::TableMeta

source ·
pub trait TableMeta {
    // Required methods
    fn table_name() -> &'static str;
    fn table_columns() -> &'static [&'static str];
    fn primary_key() -> Option<&'static str>;
}

Required Methods§

source

fn table_name() -> &'static str

source

fn table_columns() -> &'static [&'static str]

source

fn primary_key() -> Option<&'static str>

Object Safety§

This trait is not object safe.

Implementors§