Struct icu_datetime::input::ExtractedTimeZoneInput
source · pub(crate) struct ExtractedTimeZoneInput {
gmt_offset: Option<GmtOffset>,
time_zone_id: Option<TimeZoneBcp47Id>,
metazone_id: Option<MetazoneId>,
zone_variant: Option<ZoneVariant>,
}
Expand description
A TimeZoneInput
type with all of the fields pre-extracted
See TimeZoneInput
for documentation on individual fields
Fields§
§gmt_offset: Option<GmtOffset>
§time_zone_id: Option<TimeZoneBcp47Id>
§metazone_id: Option<MetazoneId>
§zone_variant: Option<ZoneVariant>
Implementations§
source§impl ExtractedTimeZoneInput
impl ExtractedTimeZoneInput
sourcepub(crate) fn extract_from<T: TimeZoneInput>(input: &T) -> Self
pub(crate) fn extract_from<T: TimeZoneInput>(input: &T) -> Self
Construct given an instance of a [ZonedDateTimeInput
].
Trait Implementations§
source§impl Clone for ExtractedTimeZoneInput
impl Clone for ExtractedTimeZoneInput
source§fn clone(&self) -> ExtractedTimeZoneInput
fn clone(&self) -> ExtractedTimeZoneInput
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 Debug for ExtractedTimeZoneInput
impl Debug for ExtractedTimeZoneInput
source§impl TimeZoneInput for ExtractedTimeZoneInput
impl TimeZoneInput for ExtractedTimeZoneInput
source§fn gmt_offset(&self) -> Option<GmtOffset>
fn gmt_offset(&self) -> Option<GmtOffset>
The GMT offset in Nanoseconds.
source§fn time_zone_id(&self) -> Option<TimeZoneBcp47Id>
fn time_zone_id(&self) -> Option<TimeZoneBcp47Id>
The IANA time-zone identifier.
source§fn metazone_id(&self) -> Option<MetazoneId>
fn metazone_id(&self) -> Option<MetazoneId>
The metazone identifier.
source§fn zone_variant(&self) -> Option<ZoneVariant>
fn zone_variant(&self) -> Option<ZoneVariant>
The time variant (e.g. “daylight”, “standard”)
impl Copy for ExtractedTimeZoneInput
Auto Trait Implementations§
impl Freeze for ExtractedTimeZoneInput
impl RefUnwindSafe for ExtractedTimeZoneInput
impl Send for ExtractedTimeZoneInput
impl Sync for ExtractedTimeZoneInput
impl Unpin for ExtractedTimeZoneInput
impl UnwindSafe for ExtractedTimeZoneInput
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
source§impl<T> IntoEither for T
impl<T> IntoEither for T
source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moresource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more