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,
}

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

impl Clone for WasmFeatures[src]

impl Copy for WasmFeatures[src]

impl Debug for WasmFeatures[src]

impl Default for WasmFeatures[src]

impl Hash for WasmFeatures[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.