Type Alias wasmer::Features

source ยท
pub type Features = Features;
๐Ÿ‘ŽDeprecated: wasmer::Features is deprecated, use wasmer::sys::Features instead
Expand description

Controls which experimental features will be enabled.

Aliased Typeยง

struct Features {
    pub threads: bool,
    pub reference_types: bool,
    pub simd: bool,
    pub bulk_memory: bool,
    pub multi_value: bool,
    pub tail_call: bool,
    pub module_linking: bool,
    pub multi_memory: bool,
    pub memory64: bool,
    pub exceptions: bool,
    pub relaxed_simd: bool,
    pub extended_const: bool,
}

Fieldsยง

ยงthreads: bool

Threads proposal should be enabled

ยงreference_types: bool

Reference Types proposal should be enabled

ยงsimd: bool

SIMD proposal should be enabled

ยงbulk_memory: bool

Bulk Memory proposal should be enabled

ยงmulti_value: bool

Multi Value proposal should be enabled

ยงtail_call: bool

Tail call proposal should be enabled

ยงmodule_linking: bool

Module Linking proposal should be enabled

ยงmulti_memory: bool

Multi Memory proposal should be enabled

ยงmemory64: bool

64-bit Memory proposal should be enabled

ยงexceptions: bool

Wasm exceptions proposal should be enabled

ยงrelaxed_simd: bool

Relaxed SIMD proposal should be enabled

ยงextended_const: bool

Extended constant expressions proposal should be enabled