pub trait MasterBaseTableColumn {
    // Required methods
    fn base_table_index(&self) -> usize;
    fn master_base_table_index(&self) -> usize;
}
Expand description

A trait for the columns of the master base table. This trait is implemented for all enums relating to the base tables. This trait provides two methods:

  • one to get the index of the column in the ”local“ base table, _i.e., not the master base table, and
  • one to get the index of the column in the master base table.

Required Methods§

source

fn base_table_index(&self) -> usize

The index of the column in the ”local“ base table, _i.e., not the master base table.

source

fn master_base_table_index(&self) -> usize

The index of the column in the master base table.

Implementors§