pub struct RunOneArgs {
pub debug: bool,
pub resume: bool,
pub id: Option<String>,
pub non_interactive: bool,
pub dry_run: bool,
pub parallel_worker: bool,
pub coordinator_queue_path: Option<PathBuf>,
pub coordinator_done_path: Option<PathBuf>,
pub parallel_target_branch: Option<String>,
pub agent: RunAgentArgs,
}Fields§
§debug: bool§resume: bool§id: Option<String>§non_interactive: bool§dry_run: bool§parallel_worker: bool§coordinator_queue_path: Option<PathBuf>§coordinator_done_path: Option<PathBuf>§parallel_target_branch: Option<String>§agent: RunAgentArgsTrait Implementations§
Source§impl Args for RunOneArgs
impl Args for RunOneArgs
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 FromArgMatches for RunOneArgs
impl FromArgMatches for RunOneArgs
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 RunOneArgs
impl RefUnwindSafe for RunOneArgs
impl Send for RunOneArgs
impl Sync for RunOneArgs
impl Unpin for RunOneArgs
impl UnsafeUnpin for RunOneArgs
impl UnwindSafe for RunOneArgs
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