pub struct RunLoopArgs {Show 13 fields
pub max_tasks: u32,
pub debug: bool,
pub resume: bool,
pub non_interactive: bool,
pub dry_run: bool,
pub parallel: Option<u8>,
pub wait_when_blocked: bool,
pub wait_poll_ms: u64,
pub wait_timeout_seconds: u64,
pub notify_when_unblocked: bool,
pub wait_when_empty: bool,
pub empty_poll_ms: u64,
pub agent: RunAgentArgs,
}Fields§
§max_tasks: u32§debug: bool§resume: bool§non_interactive: bool§dry_run: bool§parallel: Option<u8>§wait_when_blocked: bool§wait_poll_ms: u64§wait_timeout_seconds: u64§notify_when_unblocked: bool§wait_when_empty: bool§empty_poll_ms: u64§agent: RunAgentArgsTrait Implementations§
Source§impl Args for RunLoopArgs
impl Args for RunLoopArgs
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 RunLoopArgs
impl FromArgMatches for RunLoopArgs
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 RunLoopArgs
impl RefUnwindSafe for RunLoopArgs
impl Send for RunLoopArgs
impl Sync for RunLoopArgs
impl Unpin for RunLoopArgs
impl UnsafeUnpin for RunLoopArgs
impl UnwindSafe for RunLoopArgs
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