Expand description
Abstractions for running/managing a wasm/wasi instance.
Structs§
- Instance
Config - Generic options builder for creating a wasm instance.
This is passed to the
Instance::newmethod.
Traits§
- Instance
- Represents a WASI module(s).
Instance is a trait that gets implemented by consumers of this library.
This trait requires that any type implementing it is
'static, similar tostd::any::Any. This means that the type cannot contain a non-'staticreference.