pub trait FabsEmitter<T0, T1> {
// Required method
fn fabs(&mut self, rd: T0, rn: T1);
}Expand description
Emits the FABS instruction.
Assembly forms: FABS SD, SN; FABS DD, DN; FABS VD.2S, VN.2S; FABS VD.4S, VN.4S (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".