pub enum WorkerMode {
Phase1,
Phase2,
Phase3,
Single,
}Variants§
Phase1
Show the prompt for phase 1 (planning).
Phase2
Show the prompt for phase 2 (implementation). Requires plan text.
Phase3
Show the prompt for phase 3 (code review).
Single
Show the combined single-phase prompt (plan+implement).
Trait Implementations§
Source§impl Clone for WorkerMode
impl Clone for WorkerMode
Source§fn clone(&self) -> WorkerMode
fn clone(&self) -> WorkerMode
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 WorkerMode
impl Debug for WorkerMode
Source§impl PartialEq for WorkerMode
impl PartialEq for WorkerMode
impl Copy for WorkerMode
impl Eq for WorkerMode
impl StructuralPartialEq for WorkerMode
Auto Trait Implementations§
impl Freeze for WorkerMode
impl RefUnwindSafe for WorkerMode
impl Send for WorkerMode
impl Sync for WorkerMode
impl Unpin for WorkerMode
impl UnsafeUnpin for WorkerMode
impl UnwindSafe for WorkerMode
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.