pub trait Tbl5Emitter<T0, T1, T2, T3, T4> {
// Required method
fn tbl_5(&mut self, rd: T0, rn: T1, rm1: T2, rm2: T3, rm3: T4);
}Expand description
Emits the TBL_5 instruction.
Assembly forms: TBL VD.8B, VN.16B, VM.8B; TBL VD.16B, VN.16B, VM.16B; TBL VD.8B, 2X{VN.16B}+, VM.8B; TBL VD.16B, 2X{VN.16B}+, VM.16B (and related forms).
Operands: rd, rn, rm1, rm2, rm3.
Required Methods§
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".