pub trait TbzEmitter<T0, T1, T2> {
// Required method
fn tbz(&mut self, rt: T0, imm: T1, target: T2);
}Expand description
Emits the TBZ instruction.
Assembly forms: TBZ WT, #IMM, #RELS*4; TBZ XT, #IMM, #RELS*4.
Operands: rt, imm, target.
Required Methods§
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".