Trait wasm::execution::value::InteropValueList
source · pub trait InteropValueList {
const TYS: &'static [ValType];
// Required methods
fn into_values(self) -> Vec<Value>;
fn from_values(values: impl Iterator<Item = Value>) -> Self;
}
Expand description
An InteropValueList is an iterable list of InteropValues (i.e. Rust types that can be converted into WASM Values).
Required Associated Constants§
Required Methods§
fn into_values(self) -> Vec<Value>
fn from_values(values: impl Iterator<Item = Value>) -> Self
Object Safety§
This trait is not object safe.