pub enum Substate {
    None,
    CreatingEnvironment,
    RunningTests,
    CanceledByUser,
    AbortedBySystem,
    TimedOut,
    PendingAnalysis,
    Analyzed,
    CancellationInProgress,
}Expand description
TestRun Substate.
Variants§
None
CreatingEnvironment
RunningTests
CanceledByUser
AbortedBySystem
TimedOut
PendingAnalysis
Analyzed
CancellationInProgress
Trait Implementations§
Source§impl<'de> Deserialize<'de> for Substate
 
impl<'de> Deserialize<'de> for Substate
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 StructuralPartialEq for Substate
Auto Trait Implementations§
impl Freeze for Substate
impl RefUnwindSafe for Substate
impl Send for Substate
impl Sync for Substate
impl Unpin for Substate
impl UnwindSafe for Substate
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