pub enum StagePhase {
Action,
Check,
}Expand description
Where in a stage execution a log row was written. An execution whose
result_check runs an independent actor records both phases as two rows
sharing stage_index and attempt; every other execution is judged
without a second process and records its action alone.
Variants§
Implementations§
Trait Implementations§
Source§impl Clone for StagePhase
impl Clone for StagePhase
Source§fn clone(&self) -> StagePhase
fn clone(&self) -> StagePhase
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 moreimpl Copy for StagePhase
Source§impl Debug for StagePhase
impl Debug for StagePhase
impl Eq for StagePhase
Source§impl PartialEq for StagePhase
impl PartialEq for StagePhase
impl StructuralPartialEq for StagePhase
Auto Trait Implementations§
impl Freeze for StagePhase
impl RefUnwindSafe for StagePhase
impl Send for StagePhase
impl Sync for StagePhase
impl Unpin for StagePhase
impl UnsafeUnpin for StagePhase
impl UnwindSafe for StagePhase
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<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.