[][src]Type Definition wasmer::Val

type Val = Value<Function>;

WebAssembly computations manipulate values of basic value types:

  • Integers (32 or 64 bit width)
  • Floating-point (32 or 64 bit width)
  • Vectors (128 bits, with 32 or 64 bit lanes)

Spec: https://webassembly.github.io/spec/core/exec/runtime.html#values

Trait Implementations

impl From<Function> for Val[src]

impl StoreObject for Val[src]