pub struct TestConfig {Show 18 fields
pub memory64: Option<bool>,
pub custom_page_sizes: Option<bool>,
pub multi_memory: Option<bool>,
pub threads: Option<bool>,
pub gc: Option<bool>,
pub function_references: Option<bool>,
pub relaxed_simd: Option<bool>,
pub reference_types: Option<bool>,
pub tail_call: Option<bool>,
pub extended_const: Option<bool>,
pub wide_arithmetic: Option<bool>,
pub hogs_memory: Option<bool>,
pub nan_canonicalization: Option<bool>,
pub component_model_async: Option<bool>,
pub component_model_async_builtins: Option<bool>,
pub component_model_async_stackful: Option<bool>,
pub simd: Option<bool>,
pub gc_types: Option<bool>,
}
Expand description
Per-test configuration which is written down in the test file itself for
misc_testsuite/**/*.wast
or in spec_test_config
above for spec tests.
Fields§
§memory64: Option<bool>
§custom_page_sizes: Option<bool>
§multi_memory: Option<bool>
§threads: Option<bool>
§gc: Option<bool>
§function_references: Option<bool>
§relaxed_simd: Option<bool>
§reference_types: Option<bool>
§tail_call: Option<bool>
§extended_const: Option<bool>
§wide_arithmetic: Option<bool>
§hogs_memory: Option<bool>
§nan_canonicalization: Option<bool>
§component_model_async: Option<bool>
§component_model_async_builtins: Option<bool>
§component_model_async_stackful: Option<bool>
§simd: Option<bool>
§gc_types: Option<bool>
Implementations§
Source§impl TestConfig
impl TestConfig
pub fn memory64(&self) -> bool
pub fn custom_page_sizes(&self) -> bool
pub fn multi_memory(&self) -> bool
pub fn threads(&self) -> bool
pub fn gc(&self) -> bool
pub fn function_references(&self) -> bool
pub fn relaxed_simd(&self) -> bool
pub fn reference_types(&self) -> bool
pub fn tail_call(&self) -> bool
pub fn extended_const(&self) -> bool
pub fn wide_arithmetic(&self) -> bool
pub fn hogs_memory(&self) -> bool
pub fn nan_canonicalization(&self) -> bool
pub fn component_model_async(&self) -> bool
pub fn component_model_async_builtins(&self) -> bool
pub fn component_model_async_stackful(&self) -> bool
pub fn simd(&self) -> bool
pub fn gc_types(&self) -> bool
Source§impl TestConfig
impl TestConfig
Trait Implementations§
Source§impl Clone for TestConfig
impl Clone for TestConfig
Source§fn clone(&self) -> TestConfig
fn clone(&self) -> TestConfig
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 TestConfig
impl Debug for TestConfig
Source§impl Default for TestConfig
impl Default for TestConfig
Source§fn default() -> TestConfig
fn default() -> TestConfig
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for TestConfig
impl<'de> Deserialize<'de> for TestConfig
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 TestConfig
impl PartialEq for TestConfig
impl StructuralPartialEq for TestConfig
Auto Trait Implementations§
impl Freeze for TestConfig
impl RefUnwindSafe for TestConfig
impl Send for TestConfig
impl Sync for TestConfig
impl Unpin for TestConfig
impl UnwindSafe for TestConfig
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