pub struct LinkPrArgs {
pub issue: Option<u64>,
pub body_file: Option<PathBuf>,
pub task: Option<String>,
pub sprint: Option<u16>,
pub pr_group: Option<String>,
pub pr: String,
pub status: LinkPrStatus,
}Fields§
§issue: Option<u64>Plan issue number (live plan-issue path only).
body_file: Option<PathBuf>Offline issue body path.
task: Option<String>Target task row id (for example S2T3). Shared-lane rows sync automatically.
sprint: Option<u16>Target sprint rows. If multiple shared lanes exist, use --pr-group.
pr_group: Option<String>Target PR group within the sprint (pr-shared lane selector).
pr: StringPR reference (#123, 123, or GitHub pull URL).
status: LinkPrStatusRow status to apply after linking PR (default: in-progress).
Trait Implementations§
Source§impl Args for LinkPrArgs
impl Args for LinkPrArgs
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 Clone for LinkPrArgs
impl Clone for LinkPrArgs
Source§fn clone(&self) -> LinkPrArgs
fn clone(&self) -> LinkPrArgs
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 LinkPrArgs
impl Debug for LinkPrArgs
Source§impl FromArgMatches for LinkPrArgs
impl FromArgMatches for LinkPrArgs
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 LinkPrArgs
impl RefUnwindSafe for LinkPrArgs
impl Send for LinkPrArgs
impl Sync for LinkPrArgs
impl Unpin for LinkPrArgs
impl UnsafeUnpin for LinkPrArgs
impl UnwindSafe for LinkPrArgs
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