Trait bmbp_rdbc_type::RdbcTable

source ·
pub trait RdbcTable {
    // Required methods
    fn get_table() -> impl RdbcIdent;
    fn get_columns() -> Vec<impl RdbcIdent>;
    fn get_union_key() -> Vec<impl RdbcIdent>;

    // Provided method
    fn get_primary_key() -> impl RdbcIdent { ... }
}
Expand description

RdbcTable which use for declare a struct to table

Required Methods§

Provided Methods§

Object Safety§

This trait is not object safe.

Implementors§