pub enum ExecutionPhase {
Planning,
Implementation,
Review,
Complete,
}Expand description
Execution phases for multi-phase task workflows.
Variants§
Planning
Phase 1: Planning and analysis.
Implementation
Phase 2: Implementation and CI.
Review
Phase 3: Review and completion.
Complete
Execution completed.
Implementations§
Source§impl ExecutionPhase
impl ExecutionPhase
Sourcepub fn phase_number(&self) -> u8
pub fn phase_number(&self) -> u8
Returns the phase number (1-3) or 0 for Complete.
Trait Implementations§
Source§impl Clone for ExecutionPhase
impl Clone for ExecutionPhase
Source§fn clone(&self) -> ExecutionPhase
fn clone(&self) -> ExecutionPhase
Returns a duplicate of the value. Read more
1.0.0 · 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 ExecutionPhase
impl Debug for ExecutionPhase
Source§impl<'de> Deserialize<'de> for ExecutionPhase
impl<'de> Deserialize<'de> for ExecutionPhase
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
Source§impl Hash for ExecutionPhase
impl Hash for ExecutionPhase
Source§impl PartialEq for ExecutionPhase
impl PartialEq for ExecutionPhase
Source§impl Serialize for ExecutionPhase
impl Serialize for ExecutionPhase
impl Copy for ExecutionPhase
impl Eq for ExecutionPhase
impl StructuralPartialEq for ExecutionPhase
Auto Trait Implementations§
impl Freeze for ExecutionPhase
impl RefUnwindSafe for ExecutionPhase
impl Send for ExecutionPhase
impl Sync for ExecutionPhase
impl Unpin for ExecutionPhase
impl UnsafeUnpin for ExecutionPhase
impl UnwindSafe for ExecutionPhase
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.