pub trait ModuleInfo {
    fn lookup_stack_map(&self, pc: usize) -> Option<&StackMap>;
}
Expand description

Used by the runtime to query module information.

Required Methods

Lookup the stack map at a program counter value.

Implementors