pub struct TZData {
pub transitions: Vec<Transition>,
pub leap_seconds: Vec<LeapSecond>,
}Expand description
Parsed, interpreted contents of a zoneinfo file.
Fields§
§transitions: Vec<Transition>Vector of transitions that are described in this data.
leap_seconds: Vec<LeapSecond>Vector of leap seconds that are described in this data.
Trait Implementations§
impl Eq for TZData
impl StructuralPartialEq for TZData
Auto Trait Implementations§
impl Freeze for TZData
impl RefUnwindSafe for TZData
impl Send for TZData
impl Sync for TZData
impl Unpin for TZData
impl UnwindSafe for TZData
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