Module wasmer_runtime_core_fl::instance[][src]

Expand description

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

A representation of an exported WebAssembly function.

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

An instantiated WebAssembly module.