pub struct ReadyPlanArgs {
pub issue: Option<u64>,
pub body_file: Option<PathBuf>,
pub summary: SummaryArgs,
pub label_update: bool,
pub label: Option<String>,
pub remove_label: Vec<String>,
pub comment_mode: CommentModeArgs,
}Fields§
§issue: Option<u64>Plan issue number (live plan-issue path only).
body_file: Option<PathBuf>Offline issue body path.
summary: SummaryArgs§label_update: boolApply label updates in live mode.
label: Option<String>Review label to add when --label-update is set.
remove_label: Vec<String>Labels to remove when --label-update is set.
comment_mode: CommentModeArgsTrait Implementations§
Source§impl Args for ReadyPlanArgs
impl Args for ReadyPlanArgs
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 ReadyPlanArgs
impl Clone for ReadyPlanArgs
Source§fn clone(&self) -> ReadyPlanArgs
fn clone(&self) -> ReadyPlanArgs
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 ReadyPlanArgs
impl Debug for ReadyPlanArgs
Source§impl FromArgMatches for ReadyPlanArgs
impl FromArgMatches for ReadyPlanArgs
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 ReadyPlanArgs
impl RefUnwindSafe for ReadyPlanArgs
impl Send for ReadyPlanArgs
impl Sync for ReadyPlanArgs
impl Unpin for ReadyPlanArgs
impl UnsafeUnpin for ReadyPlanArgs
impl UnwindSafe for ReadyPlanArgs
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