pub enum EnvCommands {
Add(EnvAddArgs),
Remove(EnvRemoveArgs),
Edit(EnvEditArgs),
List(EnvListArgs),
Switch(EnvSwitchArgs),
Active(EnvActiveArgs),
}Variants§
Add(EnvAddArgs)
Add a new empty environment to a project
Remove(EnvRemoveArgs)
Remove an environment from a project
Edit(EnvEditArgs)
Edit an environment’s values (opens editor)
List(EnvListArgs)
List environments for a project
Switch(EnvSwitchArgs)
Switch to an environment
Active(EnvActiveArgs)
Show the active environment for a project
Trait Implementations§
Source§impl Debug for EnvCommands
impl Debug for EnvCommands
Source§impl FromArgMatches for EnvCommands
impl FromArgMatches for EnvCommands
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<'b>(
&mut self,
__clap_arg_matches: &mut ArgMatches,
) -> Result<(), Error>
fn update_from_arg_matches_mut<'b>( &mut self, __clap_arg_matches: &mut ArgMatches, ) -> Result<(), Error>
Assign values from
ArgMatches to self.Source§impl Subcommand for EnvCommands
impl Subcommand for EnvCommands
Source§fn augment_subcommands<'b>(__clap_app: Command) -> Command
fn augment_subcommands<'b>(__clap_app: Command) -> Command
Source§fn augment_subcommands_for_update<'b>(__clap_app: Command) -> Command
fn augment_subcommands_for_update<'b>(__clap_app: Command) -> Command
Append to
Command so it can instantiate self via
FromArgMatches::update_from_arg_matches_mut Read moreSource§fn has_subcommand(__clap_name: &str) -> bool
fn has_subcommand(__clap_name: &str) -> bool
Test whether
Self can parse a specific subcommandAuto Trait Implementations§
impl Freeze for EnvCommands
impl RefUnwindSafe for EnvCommands
impl Send for EnvCommands
impl Sync for EnvCommands
impl Unpin for EnvCommands
impl UnwindSafe for EnvCommands
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