pub struct CreateOptions {
pub path: PathBuf,
pub multi: bool,
pub dry_run: bool,
pub priority: Option<TaskPriority>,
pub tags: Vec<String>,
pub draft: bool,
}Expand description
Options for creating tasks from a PRD file.
Fields§
§path: PathBufPath to the PRD markdown file.
multi: boolCreate multiple tasks (one per user story) instead of single consolidated task.
dry_run: boolPreview without inserting into queue.
priority: Option<TaskPriority>Priority for generated tasks.
Tags to add to all generated tasks.
draft: boolCreate as draft status.
Auto Trait Implementations§
impl Freeze for CreateOptions
impl RefUnwindSafe for CreateOptions
impl Send for CreateOptions
impl Sync for CreateOptions
impl Unpin for CreateOptions
impl UnsafeUnpin for CreateOptions
impl UnwindSafe for CreateOptions
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