pub struct AuxTableValidateArgs {
pub zone_tab: Option<PathBuf>,
pub zone1970_tab: Option<PathBuf>,
pub zonenow_tab: Option<PathBuf>,
pub iso3166_tab: Option<PathBuf>,
pub format: ReportFormatArg,
}Expand description
aux-table-validate (T16.4): structural validation of auxiliary .tab files. Each flag points at a
table file directly — they are not --input compile sources (the category law).
Fields§
§zone_tab: Option<PathBuf>Path to zone.tab.
zone1970_tab: Option<PathBuf>Path to zone1970.tab (cross-validated against iso3166.tab when both are given).
zonenow_tab: Option<PathBuf>Path to zonenow.tab (now/future-agreement table — XX codes allowed).
iso3166_tab: Option<PathBuf>Path to iso3166.tab.
format: ReportFormatArgOutput format.
Trait Implementations§
Source§impl Args for AuxTableValidateArgs
impl Args for AuxTableValidateArgs
Source§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
Append to
Command so it can instantiate self via
FromArgMatches::update_from_arg_matches_mut Read moreSource§impl Debug for AuxTableValidateArgs
impl Debug for AuxTableValidateArgs
Source§impl FromArgMatches for AuxTableValidateArgs
impl FromArgMatches for AuxTableValidateArgs
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 Freeze for AuxTableValidateArgs
impl RefUnwindSafe for AuxTableValidateArgs
impl Send for AuxTableValidateArgs
impl Sync for AuxTableValidateArgs
impl Unpin for AuxTableValidateArgs
impl UnsafeUnpin for AuxTableValidateArgs
impl UnwindSafe for AuxTableValidateArgs
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