pub struct ZoneEra {
pub stdoff: Offset,
pub rules: ZoneRules,
pub format: String,
pub until: Option<Until>,
pub origin: Origin,
}Expand description
One era of a zone (one Zone/continuation line up to its UNTIL).
Fields§
§stdoff: OffsetStandard UT offset for the era (STDOFF), seconds east of UTC.
rules: ZoneRules§format: StringAbbreviation template (FORMAT).
until: Option<Until>UNTIL instant ending this era; None for the final era.
origin: OriginTrait Implementations§
Auto Trait Implementations§
impl Freeze for ZoneEra
impl RefUnwindSafe for ZoneEra
impl Send for ZoneEra
impl Sync for ZoneEra
impl Unpin for ZoneEra
impl UnsafeUnpin for ZoneEra
impl UnwindSafe for ZoneEra
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