enumstd.wasm.NameSubsection[src]

Defines the enum values for each subsection id for the "Names" custom section as described by: https://webassembly.github.io/spec/core/appendix/custom.html?highlight=name#name-section

Fields

module
function
local
label
type
table
memory
global
elem_segment
data_segment

Source Code

Source code
pub const NameSubsection = enum(u8) {
    module,
    function,
    local,
    label,
    type,
    table,
    memory,
    global,
    elem_segment,
    data_segment,
}