pub enum SubCommands {
Attach(AttachArgs),
Launch(LaunchArgs),
Stop(StopArgs),
Balloon(BalloonArgs),
List(ListArgs),
Socat(SocatArgs),
Vsh(VshArgs),
VsockPerf(VsockPerfArgs),
Wipe(WipeArgs),
Mem(MemArgs),
}
Variants§
Attach(AttachArgs)
Launch(LaunchArgs)
Stop(StopArgs)
Balloon(BalloonArgs)
List(ListArgs)
Socat(SocatArgs)
Vsh(VshArgs)
VsockPerf(VsockPerfArgs)
Wipe(WipeArgs)
Mem(MemArgs)
Trait Implementations§
Source§impl ArgsInfo for SubCommands
impl ArgsInfo for SubCommands
Source§fn get_args_info() -> CommandInfoWithArgs
fn get_args_info() -> CommandInfoWithArgs
Returns the argument info.
§fn get_subcommands() -> Vec<SubCommandInfo<'static>>
fn get_subcommands() -> Vec<SubCommandInfo<'static>>
Returns the list of subcommands
Source§impl Debug for SubCommands
impl Debug for SubCommands
Source§impl FromArgs for SubCommands
impl FromArgs for SubCommands
Source§fn from_args(command_name: &[&str], args: &[&str]) -> Result<Self, EarlyExit>
fn from_args(command_name: &[&str], args: &[&str]) -> Result<Self, EarlyExit>
Construct the type from an input set of arguments. Read more
Source§fn redact_arg_values(
command_name: &[&str],
args: &[&str],
) -> Result<Vec<String>, EarlyExit>
fn redact_arg_values( command_name: &[&str], args: &[&str], ) -> Result<Vec<String>, EarlyExit>
Get a String with just the argument names, e.g., options, flags, subcommands, etc, but
without the values of the options and arguments. This can be useful as a means to capture
anonymous usage statistics without revealing the content entered by the end user. Read more
Source§impl PartialEq for SubCommands
impl PartialEq for SubCommands
Source§impl SubCommands for SubCommands
impl SubCommands for SubCommands
§fn dynamic_commands() -> &'static [&'static CommandInfo<'static>]
fn dynamic_commands() -> &'static [&'static CommandInfo<'static>]
Get a list of commands that are discovered at runtime.
impl StructuralPartialEq for SubCommands
Auto Trait Implementations§
impl Freeze for SubCommands
impl RefUnwindSafe for SubCommands
impl Send for SubCommands
impl Sync for SubCommands
impl Unpin for SubCommands
impl UnwindSafe for SubCommands
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