pub struct MachineTaskDecomposeArgs {
pub source: Vec<String>,
pub attach_to: Option<String>,
pub max_depth: u8,
pub max_children: u8,
pub max_nodes: u8,
pub status: String,
pub child_policy: String,
pub with_dependencies: bool,
pub write: bool,
pub agent: AgentArgs,
}Fields§
§source: Vec<String>§attach_to: Option<String>§max_depth: u8§max_children: u8§max_nodes: u8§status: String§child_policy: String§with_dependencies: bool§write: bool§agent: AgentArgsTrait Implementations§
Source§impl Args for MachineTaskDecomposeArgs
impl Args for MachineTaskDecomposeArgs
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 MachineTaskDecomposeArgs
impl FromArgMatches for MachineTaskDecomposeArgs
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 MachineTaskDecomposeArgs
impl RefUnwindSafe for MachineTaskDecomposeArgs
impl Send for MachineTaskDecomposeArgs
impl Sync for MachineTaskDecomposeArgs
impl Unpin for MachineTaskDecomposeArgs
impl UnsafeUnpin for MachineTaskDecomposeArgs
impl UnwindSafe for MachineTaskDecomposeArgs
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