pub trait UsdotEmitter<T0, T1, T2> {
// Required method
fn usdot(&mut self, operand_1: T0, rn: T1, rm: T2);
}Expand description
Emits the USDOT instruction.
Assembly forms: USDOT VX.2S, VN.8B, VM.TB; USDOT VX.4S, VN.16B, VM.TB; USDOT VX.2S, VN.8B, VM.4B[#IDX]; USDOT VX.4S, VN.16B, VM.4B[#IDX].
Operands: operand_1, rn, rm.
Required Methods§
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".