Trait triton_vm::table::table_column::MasterBaseTableColumn
source · 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§
sourcefn base_table_index(&self) -> usize
fn base_table_index(&self) -> usize
The index of the column in the ”local“ base table, _i.e., not the master base table.
sourcefn master_base_table_index(&self) -> usize
fn master_base_table_index(&self) -> usize
The index of the column in the master base table.