pub enum DriverSubCommand {
Disable(DisableCommand),
Dump(DumpCommand),
List(ListCommand),
ListComposites(ListCompositesCommand),
ListDevices(ListDevicesCommand),
ListHosts(ListHostsCommand),
ListCompositeNodeSpecs(ListCompositeNodeSpecsCommand),
Register(RegisterCommand),
Restart(RestartCommand),
TestNode(TestNodeCommand),
Node(NodeCommand),
Host(HostCommand),
}Variants§
Disable(DisableCommand)
Dump(DumpCommand)
List(ListCommand)
ListComposites(ListCompositesCommand)
ListDevices(ListDevicesCommand)
ListHosts(ListHostsCommand)
ListCompositeNodeSpecs(ListCompositeNodeSpecsCommand)
Register(RegisterCommand)
Restart(RestartCommand)
TestNode(TestNodeCommand)
Node(NodeCommand)
Host(HostCommand)
Trait Implementations§
Source§impl ArgsInfo for DriverSubCommand
impl ArgsInfo for DriverSubCommand
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 Debug for DriverSubCommand
impl Debug for DriverSubCommand
Source§impl FromArgs for DriverSubCommand
impl FromArgs for DriverSubCommand
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 DriverSubCommand
impl PartialEq for DriverSubCommand
Source§impl SubCommands for DriverSubCommand
impl SubCommands for DriverSubCommand
Source§const COMMANDS: &'static [&'static CommandInfo]
const COMMANDS: &'static [&'static CommandInfo]
Info for the commands.
Source§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 DriverSubCommand
Auto Trait Implementations§
impl Freeze for DriverSubCommand
impl RefUnwindSafe for DriverSubCommand
impl Send for DriverSubCommand
impl Sync for DriverSubCommand
impl Unpin for DriverSubCommand
impl UnwindSafe for DriverSubCommand
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
Source§impl<T, D> Encode<Ambiguous1, D> for Twhere
D: ResourceDialect,
impl<T, D> Encode<Ambiguous1, D> for Twhere
D: ResourceDialect,
Source§impl<T, D> Encode<Ambiguous2, D> for Twhere
D: ResourceDialect,
impl<T, D> Encode<Ambiguous2, D> for Twhere
D: ResourceDialect,
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more