pub trait Sm4eEmitter<T0, T1> {
// Required method
fn sm4e(&mut self, operand_1: T0, rn: T1);
}Expand description
Emits the SM4E instruction.
Assembly forms: SM4E VX.4S, VN.4S.
Operands: operand_1, rn.
Required Methods§
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".