Struct WasmFeaturesInflated   
pub struct WasmFeaturesInflated {Show 36 fields
    pub mutable_global: bool,
    pub saturating_float_to_int: bool,
    pub sign_extension: bool,
    pub reference_types: bool,
    pub multi_value: bool,
    pub bulk_memory: bool,
    pub simd: bool,
    pub relaxed_simd: bool,
    pub threads: bool,
    pub shared_everything_threads: bool,
    pub tail_call: bool,
    pub floats: bool,
    pub multi_memory: bool,
    pub exceptions: bool,
    pub memory64: bool,
    pub extended_const: bool,
    pub component_model: bool,
    pub function_references: bool,
    pub memory_control: bool,
    pub gc: bool,
    pub custom_page_sizes: bool,
    pub legacy_exceptions: bool,
    pub gc_types: bool,
    pub stack_switching: bool,
    pub wide_arithmetic: bool,
    pub cm_values: bool,
    pub cm_nested_names: bool,
    pub cm_async: bool,
    pub cm_async_stackful: bool,
    pub cm_async_builtins: bool,
    pub cm_threading: bool,
    pub cm_error_context: bool,
    pub cm_fixed_size_list: bool,
    pub cm_gc: bool,
    pub call_indirect_overlong: bool,
    pub bulk_memory_opt: bool,
}Expand description
Inflated version of WasmFeatures that
allows for exhaustive matching on fields.
Fields§
§mutable_global: boolThe WebAssembly mutable-global proposal.
Defaults to true.
saturating_float_to_int: boolThe WebAssembly saturating-float-to-int proposal.
Defaults to true.
sign_extension: boolThe WebAssembly sign-extension-ops proposal.
Defaults to true.
reference_types: boolThe WebAssembly reference types proposal.
Defaults to true.
multi_value: boolThe WebAssembly multi-value proposal.
Defaults to true.
bulk_memory: boolThe WebAssembly bulk memory operations proposal.
Defaults to true.
simd: boolThe WebAssembly SIMD proposal.
Defaults to true.
relaxed_simd: boolThe WebAssembly Relaxed SIMD proposal.
Defaults to true.
threads: boolThe WebAssembly threads proposal.
Defaults to true.
The WebAssembly shared-everything-threads proposal; includes new
component model built-ins.
Defaults to false.
tail_call: boolThe WebAssembly tail-call proposal.
Defaults to true.
floats: boolWhether or not floating-point instructions are enabled.
This is enabled by default can be used to disallow floating-point operators and types.
This does not correspond to a WebAssembly proposal but is instead
intended for embeddings which have stricter-than-usual requirements
about execution. Floats in WebAssembly can have different NaN patterns
across hosts which can lead to host-dependent execution which some
runtimes may not desire.
Defaults to true.
multi_memory: boolThe WebAssembly multi memory proposal.
Defaults to true.
exceptions: boolThe WebAssembly exception handling proposal.
Defaults to true.
memory64: boolThe WebAssembly memory64 proposal.
Defaults to true.
extended_const: boolThe WebAssembly extended_const proposal.
Defaults to true.
component_model: boolThe WebAssembly component model proposal.
Defaults to true.
function_references: boolThe WebAssembly typed function references proposal.
Defaults to true.
memory_control: boolThe WebAssembly memory control proposal.
Defaults to false.
gc: boolThe WebAssembly gc proposal.
Defaults to true.
custom_page_sizes: boolThe WebAssembly custom-page-sizes
proposal.
Defaults to false.
legacy_exceptions: boolThe WebAssembly legacy exception handling proposal (phase 1)
§Note
Support this feature as long as all leading browsers also support it
https://github.com/WebAssembly/exception-handling/blob/main/proposals/exception-handling/legacy/Exceptions.md
Defaults to false.
gc_types: boolWhether or not gc types are enabled.
This feature does not correspond to any WebAssembly proposal nor concept in the specification itself. This is intended to assist embedders in disabling support for GC types at validation time. For example if an engine wants to support all of WebAssembly except a runtime garbage collector it could disable this feature.
This features is enabled by default and is used to gate types such
as externref or anyref. Note that the requisite WebAssembly
proposal must also be enabled for types like externref, meaning
that it requires both REFERENCE_TYPES and GC_TYPE to be enabled.
Note that the funcref and exnref types are not gated by this
feature. Those are expected to not require a full garbage collector
so are not gated by this.
Defaults to true.
stack_switching: boolThe WebAssembly stack-switching proposal.
Defaults to false.
wide_arithmetic: boolThe WebAssembly wide-arithmetic proposal.
Defaults to false.
cm_values: boolSupport for the value type in the component model proposal.
Corresponds to the 🪙 character in
https://github.com/WebAssembly/component-model/blob/main/design/mvp/Explainer.md.
Defaults to false.
cm_nested_names: boolSupport for the nested namespaces and projects in component model names.
Corresponds to the 🪺 character in
https://github.com/WebAssembly/component-model/blob/main/design/mvp/Explainer.md.
Defaults to false.
cm_async: boolSupport for component model async lift/lower ABI, as well as streams, futures, and errors.
Corresponds to the 🔀 character in
https://github.com/WebAssembly/component-model/blob/main/design/mvp/Explainer.md.
Defaults to false.
cm_async_stackful: boolGates the “stackful ABI” in the component model async proposal.
Corresponds to the 🚟 character in
https://github.com/WebAssembly/component-model/blob/main/design/mvp/Explainer.md.
Defaults to false.
cm_async_builtins: boolGates some intrinsics being marked with async in the component
model async proposal.
Corresponds to the 🚝 character in
https://github.com/WebAssembly/component-model/blob/main/design/mvp/Explainer.md.
Defaults to false.
cm_threading: boolSupport for threading in the component model proposal.
Corresponds to the 🧵 character in
https://github.com/WebAssembly/component-model/blob/main/design/mvp/Explainer.md.
Defaults to false.
cm_error_context: boolGates some intrinsics being marked with error-context in the component
model async proposal.
Corresponds to the 📝 character in
https://github.com/WebAssembly/component-model/blob/main/design/mvp/Explainer.md.
Defaults to false.
cm_fixed_size_list: boolSupport for fixed size lists
Corresponds to the 🔧 character in
https://github.com/WebAssembly/component-model/blob/main/design/mvp/Explainer.md.
Defaults to false.
cm_gc: boolSupport for Wasm GC in the component model proposal.
Corresponds to the 🛸 character in
https://github.com/WebAssembly/component-model/blob/main/design/mvp/Explainer.md.
Defaults to false.
call_indirect_overlong: boolSubset of the reference-types WebAssembly proposal which only
encompasses the leb-encoding of the table immediate to the
call_indirect instruction, enabling over-long encodings of an
integer for example.
This is a subcomponent of the “lime1” feature.
Defaults to true.
bulk_memory_opt: boolSubset of the bulk-memory proposal covering just the memory.copy
and memory.fill instructions.
This is a subcomponent of the “lime1” feature.
Defaults to true.
Trait Implementations§
§impl From<WasmFeatures> for WasmFeaturesInflated
 
impl From<WasmFeatures> for WasmFeaturesInflated
§fn from(features: WasmFeatures) -> WasmFeaturesInflated
 
fn from(features: WasmFeatures) -> WasmFeaturesInflated
§impl From<WasmFeaturesInflated> for WasmFeatures
 
impl From<WasmFeaturesInflated> for WasmFeatures
§fn from(inflated: WasmFeaturesInflated) -> WasmFeatures
 
fn from(inflated: WasmFeaturesInflated) -> WasmFeatures
Auto Trait Implementations§
impl Freeze for WasmFeaturesInflated
impl RefUnwindSafe for WasmFeaturesInflated
impl Send for WasmFeaturesInflated
impl Sync for WasmFeaturesInflated
impl Unpin for WasmFeaturesInflated
impl UnwindSafe for WasmFeaturesInflated
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
    T: ?Sized,
 
impl<T> BorrowMut<T> for Twhere
    T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
 
fn borrow_mut(&mut self) -> &mut T
§impl<T> Instrument for T
 
impl<T> Instrument for T
§fn instrument(self, span: Span) -> Instrumented<Self> ⓘ
 
fn instrument(self, span: Span) -> Instrumented<Self> ⓘ
Source§impl<T> IntoEither for T
 
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self> ⓘ
 
fn into_either(self, into_left: bool) -> Either<Self, Self> ⓘ
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self> ⓘ
 
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self> ⓘ
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more