Skip to main content

wasm_valtype_t

Type Alias wasm_valtype_t 

Source
pub type wasm_valtype_t = ValType;

Aliased Type§

pub enum wasm_valtype_t {
    I32,
    I64,
    F32,
    F64,
    V128,
    Ref(RefType),
}

Variants§

§

I32

Signed 32 bit integer.

§

I64

Signed 64 bit integer.

§

F32

Floating point 32 bit integer.

§

F64

Floating point 64 bit integer.

§

V128

A 128 bit number.

§

Ref(RefType)

An opaque reference to some type on the heap.