pub(crate) struct TimeZoneRef<'a> {
transitions: &'a [Transition],
local_time_types: &'a [LocalTimeType],
leap_seconds: &'a [LeapSecond],
extra_rule: &'a Option<TransitionRule>,
}
Expand description
Reference to a time zone
Fields§
§transitions: &'a [Transition]
List of transitions
local_time_types: &'a [LocalTimeType]
List of local time types (cannot be empty)
leap_seconds: &'a [LeapSecond]
List of leap seconds
extra_rule: &'a Option<TransitionRule>
Extra transition rule applicable after the last transition
Implementations§
Source§impl<'a> TimeZoneRef<'a>
impl<'a> TimeZoneRef<'a>
Sourceconst UTC: TimeZoneRef<'static>
const UTC: TimeZoneRef<'static>
The UTC time zone
Sourcepub(crate) fn find_local_time_type(
&self,
unix_time: i64,
) -> Result<&'a LocalTimeType, Error>
pub(crate) fn find_local_time_type( &self, unix_time: i64, ) -> Result<&'a LocalTimeType, Error>
Find the local time type associated to the time zone at the specified Unix time in seconds
pub(crate) fn find_local_time_type_from_local( &self, local_time: NaiveDateTime, ) -> Result<MappedLocalTime<LocalTimeType>, Error>
Trait Implementations§
Source§impl<'a> Clone for TimeZoneRef<'a>
impl<'a> Clone for TimeZoneRef<'a>
Source§fn clone(&self) -> TimeZoneRef<'a>
fn clone(&self) -> TimeZoneRef<'a>
Returns a copy of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl<'a> Debug for TimeZoneRef<'a>
impl<'a> Debug for TimeZoneRef<'a>
Source§impl<'a> PartialEq for TimeZoneRef<'a>
impl<'a> PartialEq for TimeZoneRef<'a>
impl<'a> Copy for TimeZoneRef<'a>
impl<'a> Eq for TimeZoneRef<'a>
impl<'a> StructuralPartialEq for TimeZoneRef<'a>
Auto Trait Implementations§
impl<'a> Freeze for TimeZoneRef<'a>
impl<'a> RefUnwindSafe for TimeZoneRef<'a>
impl<'a> Send for TimeZoneRef<'a>
impl<'a> Sync for TimeZoneRef<'a>
impl<'a> Unpin for TimeZoneRef<'a>
impl<'a> UnwindSafe for TimeZoneRef<'a>
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