Struct wasmtime::Instance [−][src]
#[repr(transparent)]pub struct Instance(_);Expand description
An instantiated WebAssembly module.
This type represents the instantiation of a Module. Once instantiated
you can access the exports which are of type
Extern and provide the ability to call functions, set globals, read
memory, etc. When interacting with any wasm code you’ll want to make an
Instance to call any code or execute anything.
Instances are owned by a Store which is passed in at
creation time. It’s recommended to create instances with
Linker::instantiate or similar
Linker methods, but a more low-level constructor is also
available as Instance::new.
Implementations
Creates a new Instance from the previously compiled Module and
list of imports specified.
This method instantiates the module provided with the imports,
following the procedure in the core specification to
instantiate. Instantiation can fail for a number of reasons (many
specified below), but if successful the start function will be
automatically run (if specified in the module) and then the
Instance will be returned.
Per the WebAssembly spec, instantiation includes running the module’s
start function, if it has one (not to be confused with the _start
function, which is not run).
Note that this is a low-level function that just performs an
instantiation. See the Linker struct for an API which
provides a convenient way to link imports and provides automatic Command
and Reactor behavior.
Providing Imports
The entries in the list of imports are intended to correspond 1:1
with the list of imports returned by Module::imports. Before
calling Instance::new you’ll want to inspect the return value of
Module::imports and, for each import type, create an Extern
which corresponds to that type. These Extern values are all then
collected into a list and passed to this function.
Note that this function is intentionally relatively low level. For an
easier time passing imports by doing name-based resolution it’s
recommended to instead use the Linker type.
Errors
This function can fail for a number of reasons, including, but not limited to:
- The number of
importsprovided doesn’t match the number of imports returned by themodule’sModule::importsmethod. - The type of any
Externdoesn’t match the correspondingExternTypeentry that it maps to. - The
startfunction in the instance, if present, traps. - Module/instance resource limits are exceeded.
When instantiation fails it’s recommended to inspect the return value to
see why it failed, or bubble it upwards. If you’d like to specifically
check for trap errors, you can use error.downcast::<Trap>().
Panics
This function will panic if called with a store associated with a
asynchronous config. This function
will also panic if any Extern supplied is not owned by store.
Same as Instance::new, except for usage in [asynchronous stores].
For more details about this function see the documentation on
Instance::new. The only difference between these two methods is that
this one will asynchronously invoke the wasm start function in case it
calls any imported function which is an asynchronous host function (e.g.
created with Func::new_async.
Panics
This function will panic if called with a store associated with a
synchronous config. This is only compatible with
stores associated with an asynchronous config.
This function will also panic, like Instance::new, if any Extern
specified does not belong to store.
pub fn exports<'a, T: 'a>(
&'a self,
store: impl Into<StoreContextMut<'a, T>>
) -> impl ExactSizeIterator<Item = Export<'a>> + 'a
pub fn exports<'a, T: 'a>(
&'a self,
store: impl Into<StoreContextMut<'a, T>>
) -> impl ExactSizeIterator<Item = Export<'a>> + 'a
Looks up an exported Extern value by name.
This method will search the module for an export named name and return
the value, if found.
Returns None if there was no export named name.
Panics
Panics if store does not own this instance.
Why does get_export take a mutable context?
This method requires a mutable context because an instance’s exports are lazily populated, and we cache them as they are accessed. This makes instantiating a module faster, but also means this method requires a mutable context.
pub fn get_typed_func<Params, Results, S>(
&self,
store: S,
name: &str
) -> Result<TypedFunc<Params, Results>> where
Params: WasmParams,
Results: WasmResults,
S: AsContextMut,
pub fn get_typed_func<Params, Results, S>(
&self,
store: S,
name: &str
) -> Result<TypedFunc<Params, Results>> where
Params: WasmParams,
Results: WasmResults,
S: AsContextMut,
Looks up an exported Func value by name and with its type.
This function is a convenience wrapper over Instance::get_func and
Func::typed. For more information see the linked documentation.
Returns an error if name isn’t a function export or if the export’s
type did not match Params or Results
Panics
Panics if store does not own this instance.
Trait Implementations
Auto Trait Implementations
impl RefUnwindSafe for Instance
impl UnwindSafe for Instance
Blanket Implementations
Mutably borrows from an owned value. Read more