pub enum ComparisonKind {
DecodedTzif,
ZdumpBehaviour {
lo: i32,
hi: i32,
},
}Expand description
Which comparison produced this result — so summaries never overclaim what was checked.
Variants§
DecodedTzif
Decoded both TZif files and diffed the model (footer + transitions + types).
ZdumpBehaviour
Diffed zdump -v -c lo,hi behaviour over an inclusive year horizon.
Trait Implementations§
Source§impl Clone for ComparisonKind
impl Clone for ComparisonKind
Source§fn clone(&self) -> ComparisonKind
fn clone(&self) -> ComparisonKind
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 moreSource§impl Debug for ComparisonKind
impl Debug for ComparisonKind
impl Eq for ComparisonKind
Source§impl PartialEq for ComparisonKind
impl PartialEq for ComparisonKind
Source§fn eq(&self, other: &ComparisonKind) -> bool
fn eq(&self, other: &ComparisonKind) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for ComparisonKind
Auto Trait Implementations§
impl Freeze for ComparisonKind
impl RefUnwindSafe for ComparisonKind
impl Send for ComparisonKind
impl Sync for ComparisonKind
impl Unpin for ComparisonKind
impl UnsafeUnpin for ComparisonKind
impl UnwindSafe for ComparisonKind
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