pub struct PQInfo {
check_length: bool,
out_file: Option<PathBuf>,
source_file: PathBuf,
}
Expand description
Extract basic information from a Parquet file.
Fields§
§check_length: bool
Check the length by decoding the file.
out_file: Option<PathBuf>
Path to the output JSON file.
source_file: PathBuf
Path to the Parquet file.
Trait Implementations§
source§impl Args for PQInfo
impl Args for PQInfo
source§fn group_id() -> Option<Id>
fn group_id() -> Option<Id>
Report the [
ArgGroup::id
][crate::ArgGroup::id] for this set of argumentssource§fn augment_args<'b>(__clap_app: Command) -> Command
fn augment_args<'b>(__clap_app: Command) -> Command
source§fn augment_args_for_update<'b>(__clap_app: Command) -> Command
fn augment_args_for_update<'b>(__clap_app: Command) -> Command
source§impl From<PQInfo> for RootCommand
impl From<PQInfo> for RootCommand
source§fn from(v: PQInfo) -> RootCommand
fn from(v: PQInfo) -> RootCommand
Converts to this type from the input type.
source§impl FromArgMatches for PQInfo
impl FromArgMatches for PQInfo
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(
&mut self,
__clap_arg_matches: &mut ArgMatches
) -> Result<(), Error>
fn update_from_arg_matches_mut( &mut self, __clap_arg_matches: &mut ArgMatches ) -> Result<(), Error>
Assign values from
ArgMatches
to self
.Auto Trait Implementations§
impl RefUnwindSafe for PQInfo
impl Send for PQInfo
impl Sync for PQInfo
impl Unpin for PQInfo
impl UnwindSafe for PQInfo
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