pub enum RunPhase {
Running,
Completed,
Failed,
Cancelled,
}Expand description
Current run phase (observability).
Variants§
Running
The run is still executing.
Completed
The run completed successfully.
Failed
The run ended because of a failure.
Cancelled
The run was cancelled.
Trait Implementations§
Source§impl<'de> Deserialize<'de> for RunPhase
impl<'de> Deserialize<'de> for RunPhase
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 Eq for RunPhase
impl StructuralPartialEq for RunPhase
Auto Trait Implementations§
impl Freeze for RunPhase
impl RefUnwindSafe for RunPhase
impl Send for RunPhase
impl Sync for RunPhase
impl Unpin for RunPhase
impl UnsafeUnpin for RunPhase
impl UnwindSafe for RunPhase
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