pub trait PsignwEmitter<T0, T1> {
// Required method
fn psignw(&mut self, dst: T0, src: T1);
}Expand description
Emits PSIGNW.
Assembly forms: psignw mm, mm/m64, psignw xmm, xmm/m128.
Required Methods§
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".