pub trait UdivEmitter<T0, T1, T2> {
// Required method
fn udiv(&mut self, rd: T0, rn: T1, rm: T2);
}Expand description
Emits the UDIV instruction.
Assembly forms: UDIV WD, WN, WM; UDIV XD, XN, XM.
Operands: rd, rn, rm.
Required Methods§
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".