triton_air::table_column

Trait MasterAuxColumn

Source
pub trait MasterAuxColumn {
    // Required methods
    fn aux_index(&self) -> usize;
    fn master_aux_index(&self) -> usize;
}
Expand description

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

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

Required Methods§

Source

fn aux_index(&self) -> usize

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

Source

fn master_aux_index(&self) -> usize

The index of the column in the master auxiliary table.

Implementors§