pub trait CbzEmitter<T0, T1> {
// Required method
fn cbz(&mut self, rn: T0, target: T1);
}Expand description
Emits the CBZ instruction.
Assembly forms: CBZ WN, #RELS*4; CBZ XN, #RELS*4.
Operands: rn, target.
Required Methods§
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".