Re-exports§
pub use wasmtime::*;
Modules§
Macros§
Structs§
- This struct contains parameters that would be accessible by Wasm modules.
- Represents the function argument type.
- Represents a record type.
- Represent a function type inside Marine module.
- Represent Marine module interface.
- Contains module name and a size of its linear memory in bytes. Please note that linear memory contains not only heap, but globals, shadow stack and so on. Although it doesn’t contain operand stack, additional runtime (Wasmer) structures, and some other stuff, that should be count separately.
- Describes an origin that set corresponding value.
Enums§
- Represents the types supported by WIT.
- A WIT value.
- Representation of a TOML value.
Functions§
- Deserialize a set of
IValue
s to a typeT
that implements theDeserialize
trait. - Converts the supplied IType to a Aqua0compatible text representation.
- Serialize a type
T
that implements theSerialize
trait to anIValue
.
Type Aliases§
- Type representing a TOML table, payload of the
Value::Table
variant. By default it is backed by a BTreeMap, enable thepreserve_order
feature to use a LinkedHashMap instead.