pub struct IssueCreateArgs {
pub title: String,
pub description: Option<String>,
pub details: Option<String>,
pub issue_type: String,
pub priority: i32,
pub parent: Option<String>,
pub plan_id: Option<String>,
pub labels: Option<Vec<String>>,
pub file: Option<PathBuf>,
}Fields§
§title: StringIssue title
description: Option<String>Issue description
details: Option<String>Implementation details or notes
issue_type: StringIssue type (task, bug, feature, epic, chore)
priority: i32Priority (0=lowest to 4=critical)
parent: Option<String>Parent issue ID (for subtasks)
plan_id: Option<String>Link issue to a Plan (PRD/spec)
labels: Option<Vec<String>>Labels (-l bug -l security or -l bug,security)
file: Option<PathBuf>Import issues from a JSONL file (one JSON object per line)
Trait Implementations§
Source§impl Args for IssueCreateArgs
impl Args for IssueCreateArgs
Source§fn augment_args<'b>(__clap_app: Command) -> Command
fn augment_args<'b>(__clap_app: Command) -> Command
Source§fn augment_args_for_update<'b>(__clap_app: Command) -> Command
fn augment_args_for_update<'b>(__clap_app: Command) -> Command
Append to
Command so it can instantiate self via
FromArgMatches::update_from_arg_matches_mut Read moreSource§impl Debug for IssueCreateArgs
impl Debug for IssueCreateArgs
Source§impl FromArgMatches for IssueCreateArgs
impl FromArgMatches for IssueCreateArgs
Source§fn from_arg_matches(__clap_arg_matches: &ArgMatches) -> Result<Self, Error>
fn from_arg_matches(__clap_arg_matches: &ArgMatches) -> Result<Self, Error>
Source§fn from_arg_matches_mut(
__clap_arg_matches: &mut ArgMatches,
) -> Result<Self, Error>
fn from_arg_matches_mut( __clap_arg_matches: &mut ArgMatches, ) -> Result<Self, Error>
Source§fn update_from_arg_matches(
&mut self,
__clap_arg_matches: &ArgMatches,
) -> Result<(), Error>
fn update_from_arg_matches( &mut self, __clap_arg_matches: &ArgMatches, ) -> Result<(), Error>
Assign values from
ArgMatches to self.Source§fn update_from_arg_matches_mut(
&mut self,
__clap_arg_matches: &mut ArgMatches,
) -> Result<(), Error>
fn update_from_arg_matches_mut( &mut self, __clap_arg_matches: &mut ArgMatches, ) -> Result<(), Error>
Assign values from
ArgMatches to self.Auto Trait Implementations§
impl Freeze for IssueCreateArgs
impl RefUnwindSafe for IssueCreateArgs
impl Send for IssueCreateArgs
impl Sync for IssueCreateArgs
impl Unpin for IssueCreateArgs
impl UnsafeUnpin for IssueCreateArgs
impl UnwindSafe for IssueCreateArgs
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> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more