pub trait Bic2Emitter<T0, T1> {
// Required method
fn bic_2(&mut self, rd: T0, rn_or_imm: T1);
}Expand description
Emits the BIC_2 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.
Required Methods§
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".