pub trait WasmTyList:
DecodeUntypedSlice
+ EncodeUntypedSlice
+ Sized
+ Send { }
Expand description
A list of WasmTy
types.
§Note
This is a convenience trait that allows to:
- Read host function parameters from a region of the value stack.
- Write host function results into a region of the value stack.
- Iterate over the value types of the Wasm type sequence
- This is useful to construct host function signatures.
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.