pub struct StopArgs {
pub guest_type: GuestType,
pub force: bool,
}Expand description
Stop a running guest. Usage: guest stop guest_type [-f]
Fields§
§guest_type: GuestTypeguest type to stop e.g. ‘zircon’
force: boolforce stop the guest
Trait Implementations§
Source§impl ArgsInfo for StopArgs
impl ArgsInfo for StopArgs
Source§fn get_args_info() -> CommandInfoWithArgs
fn get_args_info() -> CommandInfoWithArgs
Returns the argument info.
Source§fn get_subcommands() -> Vec<SubCommandInfo<'static>>
fn get_subcommands() -> Vec<SubCommandInfo<'static>>
Returns the list of subcommands
Source§impl FromArgs for StopArgs
impl FromArgs for StopArgs
Source§fn from_args(__cmd_name: &[&str], __args: &[&str]) -> Result<Self, EarlyExit>
fn from_args(__cmd_name: &[&str], __args: &[&str]) -> Result<Self, EarlyExit>
Construct the type from an input set of arguments. Read more
Source§fn redact_arg_values(
__cmd_name: &[&str],
__args: &[&str],
) -> Result<Vec<String>, EarlyExit>
fn redact_arg_values( __cmd_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 SubCommand for StopArgs
impl SubCommand for StopArgs
Source§const COMMAND: &'static CommandInfo
const COMMAND: &'static CommandInfo
Information about the subcommand.
impl StructuralPartialEq for StopArgs
Auto Trait Implementations§
impl Freeze for StopArgs
impl RefUnwindSafe for StopArgs
impl Send for StopArgs
impl Sync for StopArgs
impl Unpin for StopArgs
impl UnwindSafe for StopArgs
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