pub trait AbsEmitter<T0, T1> {
// Required method
fn abs(&mut self, rd: T0, rn: T1);
}Expand description
Emits the ABS instruction.
Assembly forms: ABS WD, WN; ABS XD, XN; ABS DD, DN; ABS VD.T, VN.T (and related forms).
Operands: rd, rn.
Required Methods§
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".