pub(crate) enum DbScanOpt {
ListIndexes(CommonOpt),
ListIndex(DbScanListIndex),
ListId2Entry(CommonOpt),
GetId2Entry(DbScanGetId2Entry),
ListIndexAnalysis(CommonOpt),
}
Variants§
ListIndexes(CommonOpt)
List all index tables that exist on the system.
ListIndex(DbScanListIndex)
List all content of a named index
ListId2Entry(CommonOpt)
List all id2entry values with reduced entry content
GetId2Entry(DbScanGetId2Entry)
View the data of a specific entry from id2entry
ListIndexAnalysis(CommonOpt)
List all content of index analysis
Trait Implementations§
source§impl FromArgMatches for DbScanOpt
impl FromArgMatches for DbScanOpt
source§fn from_arg_matches(__clap_arg_matches: &ArgMatches) -> Result<Self, Error>
fn from_arg_matches(__clap_arg_matches: &ArgMatches) -> Result<Self, Error>
source§fn from_arg_matches_mut(
__clap_arg_matches: &mut ArgMatches
) -> Result<Self, Error>
fn from_arg_matches_mut(
__clap_arg_matches: &mut ArgMatches
) -> Result<Self, Error>
source§fn update_from_arg_matches(
&mut self,
__clap_arg_matches: &ArgMatches
) -> Result<(), Error>
fn update_from_arg_matches(
&mut self,
__clap_arg_matches: &ArgMatches
) -> Result<(), Error>
Assign values from
ArgMatches
to self
.source§fn update_from_arg_matches_mut<'b>(
&mut self,
__clap_arg_matches: &mut ArgMatches
) -> Result<(), Error>
fn update_from_arg_matches_mut<'b>(
&mut self,
__clap_arg_matches: &mut ArgMatches
) -> Result<(), Error>
Assign values from
ArgMatches
to self
.source§impl Subcommand for DbScanOpt
impl Subcommand for DbScanOpt
source§fn augment_subcommands<'b>(__clap_app: Command<'b>) -> Command<'b>
fn augment_subcommands<'b>(__clap_app: Command<'b>) -> Command<'b>
source§fn augment_subcommands_for_update<'b>(__clap_app: Command<'b>) -> Command<'b>
fn augment_subcommands_for_update<'b>(__clap_app: Command<'b>) -> Command<'b>
source§fn has_subcommand(__clap_name: &str) -> bool
fn has_subcommand(__clap_name: &str) -> bool
Test whether
Self
can parse a specific subcommand