pub enum CrossPlatformDevicesCommands {
Block(BlockOptions),
Gpu(GpuOptions),
Net(NetOptions),
Snd(SndOptions),
}Expand description
Cross-platform Devices
Variants§
Trait Implementations§
Source§impl FromArgs for CrossPlatformDevicesCommands
impl FromArgs for CrossPlatformDevicesCommands
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 SubCommands for CrossPlatformDevicesCommands
impl SubCommands for CrossPlatformDevicesCommands
§fn dynamic_commands() -> &'static [&'static CommandInfo<'static>]
fn dynamic_commands() -> &'static [&'static CommandInfo<'static>]
Get a list of commands that are discovered at runtime.
Auto Trait Implementations§
impl Freeze for CrossPlatformDevicesCommands
impl RefUnwindSafe for CrossPlatformDevicesCommands
impl Send for CrossPlatformDevicesCommands
impl Sync for CrossPlatformDevicesCommands
impl Unpin for CrossPlatformDevicesCommands
impl UnwindSafe for CrossPlatformDevicesCommands
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