Struct wasmtime_cli_flags::WasmFeatures
source · pub struct WasmFeatures {
pub reference_types: Option<bool>,
pub multi_value: Option<bool>,
pub bulk_memory: Option<bool>,
pub simd: Option<bool>,
pub relaxed_simd: Option<bool>,
pub tail_call: Option<bool>,
pub threads: Option<bool>,
pub multi_memory: Option<bool>,
pub memory64: Option<bool>,
pub function_references: Option<bool>,
}
Fields§
§reference_types: Option<bool>
§multi_value: Option<bool>
§bulk_memory: Option<bool>
§simd: Option<bool>
§relaxed_simd: Option<bool>
§tail_call: Option<bool>
§threads: Option<bool>
§multi_memory: Option<bool>
§memory64: Option<bool>
§function_references: Option<bool>
Trait Implementations§
source§impl Clone for WasmFeatures
impl Clone for WasmFeatures
source§fn clone(&self) -> WasmFeatures
fn clone(&self) -> WasmFeatures
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresource§impl Default for WasmFeatures
impl Default for WasmFeatures
source§fn default() -> WasmFeatures
fn default() -> WasmFeatures
Returns the “default value” for a type. Read more
impl Copy for WasmFeatures
Auto Trait Implementations§
impl RefUnwindSafe for WasmFeatures
impl Send for WasmFeatures
impl Sync for WasmFeatures
impl Unpin for WasmFeatures
impl UnwindSafe for WasmFeatures
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
Mutably borrows from an owned value. Read more