pub enum Flag {
OnlyStrict,
NoStrict,
Module,
Raw,
Async,
Generated,
CanBlockIsFalse,
CanBlockIsTrue,
NonDeterministic,
}Variants§
OnlyStrict
This test should only be run in strict mode
NoStrict
This test should not be run in strict mode
Module
This test should only be run as a module
Raw
This test should be run as is, in non-strict mode
Async
This test will be asynchronous, use doneprintHandle.js
Generated
This test was procedurally generated
CanBlockIsFalse
the [[CanBlock]] record must be false
CanBlockIsTrue
the [[CanBlock]] record must be true
NonDeterministic
This test may pass in more than one way depending on implementation
Trait Implementations§
Source§impl<'de> Deserialize<'de> for Flag
impl<'de> Deserialize<'de> for Flag
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
impl Copy for Flag
impl StructuralPartialEq for Flag
Auto Trait Implementations§
impl Freeze for Flag
impl RefUnwindSafe for Flag
impl Send for Flag
impl Sync for Flag
impl Unpin for Flag
impl UnwindSafe for Flag
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