1use crate::enums::bc_op_kind::BcOpKind; 2use crate::records::bc_op::BcOp; 3 4impl BcOp { 5 pub fn bc_op_bc_op_kind_u32(kind: BcOpKind, index: u32) -> Self { 6 Self { kind, index } 7 } 8}