Skip to main content

UmlslEmitter

Trait UmlslEmitter 

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

Emits the UMLSL instruction. Assembly forms: UMLSL VD.TA, VN.TB, VM.TB; UMLSL VD.4S, VN.4H, VM.H[#IDX]; UMLSL VD.2D, VN.2S, VM.S[#IDX]. Operands: rd, rn, rm.

Required Methods§

Source

fn umlsl(&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§