pub struct StructuralReportArgs {
pub input: Vec<PathBuf>,
pub reference_zic: String,
pub zone: Option<String>,
pub emit_style: EmitStyleArg,
pub format: ReportFormatArg,
}Fields§
§input: Vec<PathBuf>Source file(s) of tzdata — typically the installed /usr/share/zoneinfo/tzdata.zi.
reference_zic: StringProgram name/path of the reference zic to compare against (required — this is a
comparison, not a self-report).
zone: Option<String>Restrict the inventory to a single canonical zone (default: every canonical zone).
emit_style: EmitStyleArgEmission style for our side of the comparison (T8-slim). default keeps the
behaviour-matched output; zic-slim reproduces reference zic’s slim explicit-transition
set, collapsing the slim/fat-timecnt class.
format: ReportFormatArgOutput format.
Trait Implementations§
Source§impl Args for StructuralReportArgs
impl Args for StructuralReportArgs
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 StructuralReportArgs
impl Debug for StructuralReportArgs
Source§impl FromArgMatches for StructuralReportArgs
impl FromArgMatches for StructuralReportArgs
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 StructuralReportArgs
impl RefUnwindSafe for StructuralReportArgs
impl Send for StructuralReportArgs
impl Sync for StructuralReportArgs
impl Unpin for StructuralReportArgs
impl UnsafeUnpin for StructuralReportArgs
impl UnwindSafe for StructuralReportArgs
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