pub trait WasmInstruction {
    // Required method
    fn emit<'a, 'i>(&'a self, w: &mut Vec<Instruction<'i>>)
       where 'a: 'i;
}

Required Methods§

source

fn emit<'a, 'i>(&'a self, w: &mut Vec<Instruction<'i>>)
where 'a: 'i,

Implementors§