pub enum CompareMode {
Structural,
Zdump {
program: String,
lo: i32,
hi: i32,
},
}Expand description
How a comparison is performed.
Variants§
Structural
Decode both TZif files and diff the decoded model. Default horizon-free; suited to fixed-offset/finite fixtures and debugging.
Zdump
Diff zdump -v -c LO,HI behaviour over [lo, hi] (inclusive years). The faithful
semantic oracle. program is the zdump executable name/path.
Trait Implementations§
Source§impl Clone for CompareMode
impl Clone for CompareMode
Source§fn clone(&self) -> CompareMode
fn clone(&self) -> CompareMode
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreAuto Trait Implementations§
impl Freeze for CompareMode
impl RefUnwindSafe for CompareMode
impl Send for CompareMode
impl Sync for CompareMode
impl Unpin for CompareMode
impl UnsafeUnpin for CompareMode
impl UnwindSafe for CompareMode
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