Type Alias linera_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