Trait triton_vm::table::table_column::MasterExtTableColumn
source · pub trait MasterExtTableColumn {
// Required methods
fn ext_table_index(&self) -> usize;
fn master_ext_table_index(&self) -> usize;
}Expand description
A trait for the columns in the master extension table. This trait is implemented for all enums relating to the extension tables. The trait provides two methods:
- one to get the index of the column in the “local” extension table, i.e., not the master extension table, and
- one to get the index of the column in the master extension table.
Required Methods§
sourcefn ext_table_index(&self) -> usize
fn ext_table_index(&self) -> usize
The index of the column in the “local” extension table, i.e., not the master extension table.
sourcefn master_ext_table_index(&self) -> usize
fn master_ext_table_index(&self) -> usize
The index of the column in the master extension table.