pub struct GpuSetDisplayMouseModeCommand {
pub display_id: u32,
pub mouse_mode: GpuMouseMode,
pub socket_path: String,
}Expand description
Sets the mouse mode of a display attached to the GPU device.
Fields§
§display_id: u32display id
mouse_mode: GpuMouseModedisplay mouse mode
socket_path: StringVM Socket path
Trait Implementations§
Source§impl FromArgs for GpuSetDisplayMouseModeCommand
impl FromArgs for GpuSetDisplayMouseModeCommand
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
Auto Trait Implementations§
impl Freeze for GpuSetDisplayMouseModeCommand
impl RefUnwindSafe for GpuSetDisplayMouseModeCommand
impl Send for GpuSetDisplayMouseModeCommand
impl Sync for GpuSetDisplayMouseModeCommand
impl Unpin for GpuSetDisplayMouseModeCommand
impl UnwindSafe for GpuSetDisplayMouseModeCommand
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.