Expand description
Types and traits for interfacing between the host and the wasm runtime.
Re-exports§
pub use wasmi;
Modules§
- wasmi_
impl - Implementation of conversions between Substrate and wasmi types.
Structs§
Enums§
- Return
Value - Typed value that can be returned from a function.
- Value
- Values supported by Substrate on the boundary between host/Wasm.
- Value
Type - Value types supported by Substrate on the boundary between host/Wasm.
Traits§
- Into
Value - Something that can be converted into a wasm compatible
Value
. - Pointer
Type - Something that can be wrapped in a wasm
Pointer
. - TryFrom
Value - Something that can may be created from a wasm
Value
.
Type Aliases§
- Host
Pointer - Host pointer: suit both for 32-bit and 64-bit archs.
- Memory
Id - Sandbox memory identifier.
- Word
Size - The word size used in wasm. Normally known as
usize
in Rust.