pub trait BytecodeWitnessIndex {
    fn bytecode_witness_index(&self) -> &u8;
    fn bytecode_witness_index_mut(&mut self) -> &mut u8;
    fn bytecode_witness_index_offset_static() -> usize;

    fn bytecode_witness_index_offset(&self) -> usize { ... }
}

Required Methods

Provided Methods

Implementors