pub struct Save {
pub seconds: i32,
pub is_dst: bool,
}Expand description
A parsed SAVE value: the offset added during this rule, plus whether it counts as DST.
The DST flag follows zic: an explicit s/d suffix wins; otherwise zero is standard
and non-zero is daylight.
Fields§
§seconds: i32§is_dst: boolTrait Implementations§
impl Copy for Save
impl Eq for Save
impl StructuralPartialEq for Save
Auto Trait Implementations§
impl Freeze for Save
impl RefUnwindSafe for Save
impl Send for Save
impl Sync for Save
impl Unpin for Save
impl UnsafeUnpin for Save
impl UnwindSafe for Save
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