pub struct BalloonSet {
pub guest_type: GuestType,
pub num_pages: u32,
}
Expand description
Modify the size of a memory balloon. Usage: guest balloon set guest-type num-pages
Fields§
§guest_type: GuestType
type of the guest
num_pages: u32
number of pages guest balloon will have after use.
Trait Implementations§
Source§impl ArgsInfo for BalloonSet
impl ArgsInfo for BalloonSet
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 BalloonSet
impl Debug for BalloonSet
Source§impl FromArgs for BalloonSet
impl FromArgs for BalloonSet
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 PartialEq for BalloonSet
impl PartialEq for BalloonSet
Source§impl SubCommand for BalloonSet
impl SubCommand for BalloonSet
impl StructuralPartialEq for BalloonSet
Auto Trait Implementations§
impl Freeze for BalloonSet
impl RefUnwindSafe for BalloonSet
impl Send for BalloonSet
impl Sync for BalloonSet
impl Unpin for BalloonSet
impl UnwindSafe for BalloonSet
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
§impl<T> SubCommands for Twhere
T: SubCommand,
impl<T> SubCommands for Twhere
T: SubCommand,
§fn dynamic_commands() -> &'static [&'static CommandInfo<'static>]
fn dynamic_commands() -> &'static [&'static CommandInfo<'static>]
Get a list of commands that are discovered at runtime.