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