pub struct SupportReportArgs {
pub input: Vec<PathBuf>,
pub format: ReportFormatArg,
pub explain_buckets: bool,
}Fields§
§input: Vec<PathBuf>Source file(s) of tzdata — typically the installed /usr/share/zoneinfo/tzdata.zi.
format: ReportFormatArgOutput format.
explain_buckets: boolAnnotate each unsupported/fail-closed bucket with the deep zic semantic law it represents
(text mode). The JSON form always carries a deep_semantic field. See
docs/zic-deep-semantics.md.
Trait Implementations§
Source§impl Args for SupportReportArgs
impl Args for SupportReportArgs
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 SupportReportArgs
impl Debug for SupportReportArgs
Source§impl FromArgMatches for SupportReportArgs
impl FromArgMatches for SupportReportArgs
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 SupportReportArgs
impl RefUnwindSafe for SupportReportArgs
impl Send for SupportReportArgs
impl Sync for SupportReportArgs
impl Unpin for SupportReportArgs
impl UnsafeUnpin for SupportReportArgs
impl UnwindSafe for SupportReportArgs
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