Struct cairo_lang_casm::builder::CasmBuildResult
source · pub struct CasmBuildResult<const BRANCH_COUNT: usize> {
pub instructions: Vec<Instruction>,
pub branches: [(State, Vec<usize>); BRANCH_COUNT],
}
Expand description
The builder result.
Fields§
§instructions: Vec<Instruction>
The actual casm code.
branches: [(State, Vec<usize>); BRANCH_COUNT]
The state and relocations per branch.