Struct wasmparser::WasmFeatures[][src]

pub struct WasmFeatures {
    pub reference_types: bool,
    pub multi_value: bool,
    pub bulk_memory: bool,
    pub module_linking: bool,
    pub simd: bool,
    pub threads: bool,
    pub tail_call: bool,
    pub deterministic_only: bool,
    pub multi_memory: bool,
    pub exceptions: bool,
    pub memory64: bool,
}
Expand description

Flags for features that are enabled for validation.

Fields

reference_types: bool

The WebAssembly reference types proposal (enabled by default)

multi_value: bool

The WebAssembly multi-value proposal (enabled by default)

bulk_memory: bool

The WebAssembly bulk memory operations proposal (enabled by default)

module_linking: bool

The WebAssembly module linking proposal

simd: bool

The WebAssembly SIMD proposal

threads: bool

The WebAssembly threads proposal

tail_call: bool

The WebAssembly tail-call proposal

deterministic_only: bool

Whether or not only deterministic instructions are allowed

multi_memory: bool

The WebAssembly multi memory proposal

exceptions: bool

The WebAssembly exception handling proposal

memory64: bool

The WebAssembly memory64 proposal

Trait Implementations

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

Formats the value using the given formatter. Read more

Returns the “default value” for a type. Read more

Feeds this value into the given Hasher. Read more

Feeds a slice of this type into the given Hasher. Read more

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Performs the conversion.

Performs the conversion.

The resulting type after obtaining ownership.

Creates owned data from borrowed data, usually by cloning. Read more

🔬 This is a nightly-only experimental API. (toowned_clone_into)

recently added

Uses borrowed data to replace owned data, usually by cloning. Read more

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.