Skip to main content

IntEmitter

Trait IntEmitter 

Source
pub trait IntEmitter<A> {
    // Required method
    fn int(&mut self, op0: A);
}
Expand description

INT.

Supported operand variants:

+---+----------+
| # | Operands |
+---+----------+
| 1 | Imm      |
+---+----------+

Required Methods§

Source

fn int(&mut self, op0: A)

Implementors§

Source§

impl<'a> IntEmitter<Imm> for Assembler<'a>