pub enum Phase {
Isolating,
Preparing,
Authoring,
Gating,
Reviewing,
}Expand description
Which part of the pipeline a run is in.
Named for what is happening rather than numbered, because the numbers in the orchestrator’s comments have already changed once.
Variants§
Isolating
Making the worktree the change will be written in.
Preparing
Linking in what git ignores, and running the project’s setup.
Authoring
The agent that writes the change.
Gating
The project’s own checks.
Reviewing
A different vendor, reading the diff.
Implementations§
Trait Implementations§
impl Copy for Phase
impl Eq for Phase
impl StructuralPartialEq for Phase
Auto Trait Implementations§
impl Freeze for Phase
impl RefUnwindSafe for Phase
impl Send for Phase
impl Sync for Phase
impl Unpin for Phase
impl UnsafeUnpin for Phase
impl UnwindSafe for Phase
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