pub struct SemanticReportArgs {
pub input: Vec<PathBuf>,
pub reference_zic: String,
pub zdump: String,
pub zone: Vec<String>,
pub format: ReportFormatArg,
}Expand description
semantic-report (T15.3): typed zdump-backed semantic witnesses for a compact zone set.
Fields§
§input: Vec<PathBuf>Source file(s) of tzdata.
reference_zic: StringReference zic program (compiles the oracle side).
zdump: StringReference zdump program (the footer-aware behaviour oracle).
zone: Vec<String>Zones to witness (repeatable). Default: a small curated set (those present in the input).
format: ReportFormatArgOutput format (JSON is the machine-readable conformance surface).
Trait Implementations§
Source§impl Args for SemanticReportArgs
impl Args for SemanticReportArgs
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 SemanticReportArgs
impl Debug for SemanticReportArgs
Source§impl FromArgMatches for SemanticReportArgs
impl FromArgMatches for SemanticReportArgs
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 SemanticReportArgs
impl RefUnwindSafe for SemanticReportArgs
impl Send for SemanticReportArgs
impl Sync for SemanticReportArgs
impl Unpin for SemanticReportArgs
impl UnsafeUnpin for SemanticReportArgs
impl UnwindSafe for SemanticReportArgs
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