Skip to main content

Bic4Emitter

Trait Bic4Emitter 

Source
pub trait Bic4Emitter<T0, T1, T2, T3> {
    // Required method
    fn bic_4(&mut self, rd: T0, rn: T1, rm: T2, shift: T3);
}
Expand description

Emits the BIC_4 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, rm, shift.

Required Methods§

Source

fn bic_4(&mut self, rd: T0, rn: T1, rm: T2, shift: T3)

Dyn Compatibility§

This trait is dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety".

Implementors§