pub trait EonEmitter<T0, T1, T2> {
// Required method
fn eon(&mut self, rd: T0, rn: T1, rm: T2);
}Expand description
Emits the EON instruction.
Assembly forms: EON WD, WN, WM, {SOP #N}; EON XD, XN, XM, {SOP #N}.
Operands: rd, rn, rm.
Required Methods§
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".