pub trait DcEmitter<T0, T1> {
// Required method
fn dc(&mut self, dc_op: T0, rt: T1);
}Expand description
Emits the DC instruction.
Assembly forms: DC #DC_OP, XT.
Operands: dc_op, rt.
Required Methods§
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".