pub trait FuncEnv {
    // Required method
    fn callee_from_index(&self, index: u32) -> Callee;
}
Expand description

Function environment used the by the code generation to resolve module and runtime-specific information.

Required Methods§

source

fn callee_from_index(&self, index: u32) -> Callee

Get the callee information from a given function index.

Implementors§