pub struct LaunchBundleArgs {
pub agent: Option<String>,
pub model: Option<String>,
pub extra_skills: Vec<String>,
pub refresh_models: bool,
pub no_refresh_models: bool,
/* private fields */
}Fields§
§agent: Option<String>Agent name from .mars/agents/<name>.md.
Omit for ad-hoc mode; without --model, the resolved harness uses its default model.
model: Option<String>Override model token or canonical model id.
extra_skills: Vec<String>Add extra skills by name. Supports --skill a --skill b and --skill a,b.
refresh_models: boolRefresh models.dev catalog and harness probes synchronously before building (blocks until complete).
no_refresh_models: boolSkip automatic models-cache refresh; use disk cache only (no probe background refresh).
Trait Implementations§
Source§impl Args for LaunchBundleArgs
impl Args for LaunchBundleArgs
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 Debug for LaunchBundleArgs
impl Debug for LaunchBundleArgs
Source§impl FromArgMatches for LaunchBundleArgs
impl FromArgMatches for LaunchBundleArgs
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 LaunchBundleArgs
impl RefUnwindSafe for LaunchBundleArgs
impl Send for LaunchBundleArgs
impl Sync for LaunchBundleArgs
impl Unpin for LaunchBundleArgs
impl UnsafeUnpin for LaunchBundleArgs
impl UnwindSafe for LaunchBundleArgs
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
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more