pub trait BicEmitter<T0, T1, T2> {
// Required method
fn bic(&mut self, rd: T0, rn_or_imm: T1, rm_or_shift: T2);
}Expand description
Emits the BIC instruction.
Assembly forms: BIC WD, WN, WM, {SOP #N}; BIC XD, XN, XM, {SOP #N}; BIC VD.8B, VN.8B, VM.8B; BIC VD.16B, VN.16B, VM.16B (and related forms).
Operands: rd, rn_or_imm, rm_or_shift.
Required Methods§
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".