pub enum InspectCommands {
Workbook {
file: PathBuf,
format: OutputFormat,
},
Sheet {
file: PathBuf,
sheet: Option<String>,
sheet_index: Option<usize>,
format: OutputFormat,
},
Sample {
file: PathBuf,
sheet: Option<String>,
sheet_index: Option<usize>,
range: Option<String>,
rows: Option<usize>,
header_row: String,
format: OutputFormat,
},
Columns {
file: PathBuf,
sheet: String,
header_row: String,
format: OutputFormat,
},
Tables {
file: PathBuf,
sheet: String,
format: OutputFormat,
},
}Variants§
Workbook
List all sheets in the workbook
Sheet
Inspect a single sheet
Fields
§
format: OutputFormatOutput format
Sample
Sample data from a sheet
Fields
§
format: OutputFormatOutput format
Columns
Inspect column headers and inferred column metadata
Fields
§
format: OutputFormatOutput format
Tables
Detect table-like regions in a sheet
Trait Implementations§
Source§impl FromArgMatches for InspectCommands
impl FromArgMatches for InspectCommands
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 InspectCommands
impl Subcommand for InspectCommands
Source§fn augment_subcommands<'b>(__clap_app: Command) -> Command
fn augment_subcommands<'b>(__clap_app: Command) -> Command
Source§fn augment_subcommands_for_update<'b>(__clap_app: Command) -> Command
fn augment_subcommands_for_update<'b>(__clap_app: Command) -> Command
Append to
Command so it can instantiate self via
FromArgMatches::update_from_arg_matches_mut Read moreSource§fn has_subcommand(__clap_name: &str) -> bool
fn has_subcommand(__clap_name: &str) -> bool
Test whether
Self can parse a specific subcommandAuto Trait Implementations§
impl Freeze for InspectCommands
impl RefUnwindSafe for InspectCommands
impl Send for InspectCommands
impl Sync for InspectCommands
impl Unpin for InspectCommands
impl UnsafeUnpin for InspectCommands
impl UnwindSafe for InspectCommands
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> 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