Skip to main content

PmullEmitter

Trait PmullEmitter 

Source
pub trait PmullEmitter<T0, T1, T2> {
    // Required method
    fn pmull(&mut self, rd: T0, rn: T1, rm: T2);
}
Expand description

Emits the PMULL instruction. Assembly forms: PMULL VD.8H, VN.8B, VM.8B; PMULL VD.1Q, VN.1D, VM.1D. Operands: rd, rn, rm.

Required Methods§

Source

fn pmull(&mut self, rd: T0, rn: T1, rm: T2)

Dyn Compatibility§

This trait is dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety".

Implementors§