pub enum RunnerExitPhase {
Setup,
Run,
Unknown(String),
}Expand description
Which phase the runner’s session process was in when it exited, in
RunnerExit::phase. Open set — unrecognized values deserialize to
RunnerExitPhase::Unknown.
Variants§
Setup
Failed while starting up.
Run
Failed once running.
Unknown(String)
A phase not yet known to this version of the crate.
Implementations§
Trait Implementations§
Source§impl Clone for RunnerExitPhase
impl Clone for RunnerExitPhase
Source§fn clone(&self) -> RunnerExitPhase
fn clone(&self) -> RunnerExitPhase
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 RunnerExitPhase
impl Debug for RunnerExitPhase
Source§impl<'de> Deserialize<'de> for RunnerExitPhase
impl<'de> Deserialize<'de> for RunnerExitPhase
Source§fn deserialize<D: Deserializer<'de>>(deserializer: D) -> Result<Self, D::Error>
fn deserialize<D: Deserializer<'de>>(deserializer: D) -> Result<Self, D::Error>
Deserialize this value from the given Serde deserializer. Read more
Source§impl Display for RunnerExitPhase
impl Display for RunnerExitPhase
impl Eq for RunnerExitPhase
Source§impl From<&str> for RunnerExitPhase
impl From<&str> for RunnerExitPhase
Source§impl Hash for RunnerExitPhase
impl Hash for RunnerExitPhase
Source§impl PartialEq for RunnerExitPhase
impl PartialEq for RunnerExitPhase
Source§impl Serialize for RunnerExitPhase
impl Serialize for RunnerExitPhase
impl StructuralPartialEq for RunnerExitPhase
Auto Trait Implementations§
impl Freeze for RunnerExitPhase
impl RefUnwindSafe for RunnerExitPhase
impl Send for RunnerExitPhase
impl Sync for RunnerExitPhase
impl Unpin for RunnerExitPhase
impl UnsafeUnpin for RunnerExitPhase
impl UnwindSafe for RunnerExitPhase
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