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