pub struct ReleaseDiffArgs {
pub old: Vec<PathBuf>,
pub new: Vec<PathBuf>,
pub zone: Option<String>,
pub horizon: String,
pub split: i32,
pub reference_zdump: Option<String>,
pub format: ReportFormatArg,
}Expand description
release-diff (T16.6a): diff two tzdb releases per identifier.
Fields§
§old: Vec<PathBuf>The OLD release source (tzdata.zi file or a source directory).
new: Vec<PathBuf>The NEW release source (tzdata.zi file or a source directory).
zone: Option<String>Restrict to a single identifier.
horizon: StringBehaviour horizon in years (default 1900,2040, CORE.1’s).
split: i32Past/future split year (deterministic; default 2025). Never host-now.
reference_zdump: Option<String>Reference zdump for the behaviour axis. Omit ⇒ behaviour not assessed (structural still runs).
format: ReportFormatArgOutput format.
Trait Implementations§
Source§impl Args for ReleaseDiffArgs
impl Args for ReleaseDiffArgs
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 ReleaseDiffArgs
impl Debug for ReleaseDiffArgs
Source§impl FromArgMatches for ReleaseDiffArgs
impl FromArgMatches for ReleaseDiffArgs
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 ReleaseDiffArgs
impl RefUnwindSafe for ReleaseDiffArgs
impl Send for ReleaseDiffArgs
impl Sync for ReleaseDiffArgs
impl Unpin for ReleaseDiffArgs
impl UnsafeUnpin for ReleaseDiffArgs
impl UnwindSafe for ReleaseDiffArgs
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