pub trait Tbl4Emitter<T0, T1, T2, T3> {
// Required method
fn tbl_4(&mut self, rd: T0, rn: T1, rm1: T2, rm2: T3);
}Expand description
Emits the TBL_4 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.
Required Methods§
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".