pub struct ListCompositeNodeSpecsCommand {
pub verbose: bool,
pub name: Option<String>,
pub select: bool,
}Fields§
§verbose: boollist all driver properties.
name: Option<String>only show the spec with this name.
select: boolif this exists, the user will be prompted for a component to select.
Trait Implementations§
Source§impl ArgsInfo for ListCompositeNodeSpecsCommand
impl ArgsInfo for ListCompositeNodeSpecsCommand
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 ListCompositeNodeSpecsCommand
impl FromArgs for ListCompositeNodeSpecsCommand
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 ListCompositeNodeSpecsCommand
impl PartialEq for ListCompositeNodeSpecsCommand
Source§fn eq(&self, other: &ListCompositeNodeSpecsCommand) -> bool
fn eq(&self, other: &ListCompositeNodeSpecsCommand) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl SubCommand for ListCompositeNodeSpecsCommand
impl SubCommand for ListCompositeNodeSpecsCommand
Source§const COMMAND: &'static CommandInfo
const COMMAND: &'static CommandInfo
Information about the subcommand.
impl StructuralPartialEq for ListCompositeNodeSpecsCommand
Auto Trait Implementations§
impl Freeze for ListCompositeNodeSpecsCommand
impl RefUnwindSafe for ListCompositeNodeSpecsCommand
impl Send for ListCompositeNodeSpecsCommand
impl Sync for ListCompositeNodeSpecsCommand
impl Unpin for ListCompositeNodeSpecsCommand
impl UnwindSafe for ListCompositeNodeSpecsCommand
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