enumstd.wasm.BlockType[src]

Represents a block which will not return a value

Fields

empty = 0x40
i32 = 0x7F
i64 = 0x7E
f32 = 0x7D
f64 = 0x7C
v128 = 0x7B

Functions

FunctionfromValtype[src]

pub fn fromValtype(valtype: Valtype) BlockType

Parameters

valtype: Valtype

Source Code

Source code
pub fn fromValtype(valtype: Valtype) BlockType {
    return @enumFromInt(@intFromEnum(valtype));
}

Source Code

Source code
pub const BlockType = enum(u8) {
    empty = 0x40,
    i32 = 0x7F,
    i64 = 0x7E,
    f32 = 0x7D,
    f64 = 0x7C,
    v128 = 0x7B,

    pub fn fromValtype(valtype: Valtype) BlockType {
        return @enumFromInt(@intFromEnum(valtype));
    }
}