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§

source

fn ext_table_index(&self) -> usize

The index of the column in the “local” extension table, i.e., not the master extension table.

source

fn master_ext_table_index(&self) -> usize

The index of the column in the master extension table.

Implementors§