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