pub struct PlanOutput {
pub design_spec: PathBuf,
pub verification: PathBuf,
pub state: PathBuf,
pub worktree: PathBuf,
}Expand description
Output produced by finalizing a planning session.
Fields§
§design_spec: PathBufPath to the generated design spec (<worktree>/.coda/<slug>/specs/design.md).
verification: PathBufPath to the generated verification plan (<worktree>/.coda/<slug>/specs/verification.md).
state: PathBufPath to the feature state file (<worktree>/.coda/<slug>/state.yml).
worktree: PathBufPath to the git worktree (.trees/<slug>/).
Trait Implementations§
Auto Trait Implementations§
impl Freeze for PlanOutput
impl RefUnwindSafe for PlanOutput
impl Send for PlanOutput
impl Sync for PlanOutput
impl Unpin for PlanOutput
impl UnsafeUnpin for PlanOutput
impl UnwindSafe for PlanOutput
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