pub trait MechFunctionCompiler {
// Required method
fn compile(&self, ctx: &mut CompileCtx) -> MResult<Register>;
}
Required Methods§
fn compile(&self, ctx: &mut CompileCtx) -> MResult<Register>
Implementors§
impl MechFunctionCompiler for UserFunction
Available on crate feature
compiler
only.