pub trait SqsubEmitter<T0, T1, T2> {
// Required method
fn sqsub(&mut self, rd: T0, rn: T1, rm: T2);
}Expand description
Emits the SQSUB instruction.
Assembly forms: SQSUB BD, BN, BM; SQSUB HD, HN, HM; SQSUB SD, SN, SM; SQSUB DD, DN, DM (and related forms).
Operands: rd, rn, rm.
Required Methods§
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".