Trait wasmtime_runtime::ModuleInfoLookup[][src]

pub trait ModuleInfoLookup {
    fn lookup(&self, pc: usize) -> Option<Arc<dyn ModuleInfo>>;
}
Expand description

Used by the runtime to lookup information about a module given a program counter value.

Required methods

Lookup the module information from a program counter value.

Implementors