[][src]Module wasmer_runtime_core::instance

This module contains types for manipulating and accessing Wasm instances.

An "instance", or "instantiated module", is a compiled WebAssembly Module with its corresponding imports (via ImportObject) that is ready to execute.

Structs

DynFunc

A representation of an exported WebAssembly function.

Exports

Exports is used to get exports like Funcs, DynFuncs, Memorys, Globals, and Tables from an Instance.

Instance

An instantiated WebAssembly module.