pub struct OptimizeOptions {Show 39 fields
pub opt_level: Option<OptLevel>,
pub regalloc_algorithm: Option<RegallocAlgorithm>,
pub memory_may_move: Option<bool>,
pub memory_reservation: Option<u64>,
pub memory_reservation_for_growth: Option<u64>,
pub memory_guard_size: Option<u64>,
pub guard_before_linear_memory: Option<bool>,
pub table_lazy_init: Option<bool>,
pub pooling_allocator: Option<bool>,
pub pooling_decommit_batch_size: Option<usize>,
pub pooling_memory_keep_resident: Option<usize>,
pub pooling_table_keep_resident: Option<usize>,
pub pooling_memory_protection_keys: Option<MpkEnabled>,
pub pooling_max_memory_protection_keys: Option<usize>,
pub memory_init_cow: Option<bool>,
pub memory_guaranteed_dense_image_size: Option<u64>,
pub pooling_total_core_instances: Option<u32>,
pub pooling_total_component_instances: Option<u32>,
pub pooling_total_memories: Option<u32>,
pub pooling_total_tables: Option<u32>,
pub pooling_total_stacks: Option<u32>,
pub pooling_max_memory_size: Option<usize>,
pub pooling_table_elements: Option<usize>,
pub pooling_max_core_instance_size: Option<usize>,
pub pooling_max_unused_warm_slots: Option<u32>,
pub pooling_async_stack_keep_resident: Option<usize>,
pub pooling_max_component_instance_size: Option<usize>,
pub pooling_max_core_instances_per_component: Option<u32>,
pub pooling_max_memories_per_component: Option<u32>,
pub pooling_max_tables_per_component: Option<u32>,
pub pooling_max_tables_per_module: Option<u32>,
pub pooling_max_memories_per_module: Option<u32>,
pub pooling_total_gc_heaps: Option<u32>,
pub signals_based_traps: Option<bool>,
pub dynamic_memory_guard_size: Option<u64>,
pub static_memory_guard_size: Option<u64>,
pub static_memory_forced: Option<bool>,
pub static_memory_maximum_size: Option<u64>,
pub dynamic_memory_reserved_for_growth: Option<u64>,
}
Fields§
§opt_level: Option<OptLevel>
§regalloc_algorithm: Option<RegallocAlgorithm>
§memory_may_move: Option<bool>
§memory_reservation: Option<u64>
§memory_reservation_for_growth: Option<u64>
§memory_guard_size: Option<u64>
§guard_before_linear_memory: Option<bool>
§table_lazy_init: Option<bool>
§pooling_allocator: Option<bool>
§pooling_decommit_batch_size: Option<usize>
§pooling_memory_keep_resident: Option<usize>
§pooling_table_keep_resident: Option<usize>
§pooling_memory_protection_keys: Option<MpkEnabled>
§pooling_max_memory_protection_keys: Option<usize>
§memory_init_cow: Option<bool>
§memory_guaranteed_dense_image_size: Option<u64>
§pooling_total_core_instances: Option<u32>
§pooling_total_component_instances: Option<u32>
§pooling_total_memories: Option<u32>
§pooling_total_tables: Option<u32>
§pooling_total_stacks: Option<u32>
§pooling_max_memory_size: Option<usize>
§pooling_table_elements: Option<usize>
§pooling_max_core_instance_size: Option<usize>
§pooling_max_unused_warm_slots: Option<u32>
§pooling_async_stack_keep_resident: Option<usize>
§pooling_max_component_instance_size: Option<usize>
§pooling_max_core_instances_per_component: Option<u32>
§pooling_max_memories_per_component: Option<u32>
§pooling_max_tables_per_component: Option<u32>
§pooling_max_tables_per_module: Option<u32>
§pooling_max_memories_per_module: Option<u32>
§pooling_total_gc_heaps: Option<u32>
§signals_based_traps: Option<bool>
§dynamic_memory_guard_size: Option<u64>
§static_memory_guard_size: Option<u64>
§static_memory_forced: Option<bool>
§static_memory_maximum_size: Option<u64>
§dynamic_memory_reserved_for_growth: Option<u64>
Trait Implementations§
Source§impl Clone for OptimizeOptions
impl Clone for OptimizeOptions
Source§fn clone(&self) -> OptimizeOptions
fn clone(&self) -> OptimizeOptions
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 Debug for OptimizeOptions
impl Debug for OptimizeOptions
Source§impl Default for OptimizeOptions
impl Default for OptimizeOptions
Source§fn default() -> OptimizeOptions
fn default() -> OptimizeOptions
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for OptimizeOptions
impl<'de> Deserialize<'de> for OptimizeOptions
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for OptimizeOptions
impl PartialEq for OptimizeOptions
impl StructuralPartialEq for OptimizeOptions
Auto Trait Implementations§
impl Freeze for OptimizeOptions
impl RefUnwindSafe for OptimizeOptions
impl Send for OptimizeOptions
impl Sync for OptimizeOptions
impl Unpin for OptimizeOptions
impl UnwindSafe for OptimizeOptions
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
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>
Converts
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>
Converts
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