pub trait VsubpsEmitter<T0, T1, T2> {
// Required method
fn vsubps(&mut self, dst: T0, src1: T1, src2: T2);
}Expand description
Emits VSUBPS.
Assembly forms: vsubps xy, xy, xy/mxy, vsubps xyz, xyz, xyz/mxyz/b32.
Required Methods§
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".