Struct icu_timezone::provider::names::Bcp47ToIanaMapV1
source ยท pub struct Bcp47ToIanaMapV1<'data> {
pub bcp47_ids_checksum: u64,
pub canonical_iana_ids: VarZeroVec<'data, str>,
}
Expand description
A mapping from IANA time zone identifiers to BCP-47 time zone identifiers.
The BCP-47 time zone ID maps to the default IANA time zone ID according to the CLDR data.
๐ง This code is considered unstable; it may change at any time, in breaking or non-breaking ways,
including in SemVer minor releases. While the serde representation of data structs is guaranteed
to be stable, their Rust representation might not be. Use with caution.
Fieldsยง
ยงbcp47_ids_checksum: u64
An XxHash64 checksum of IanaToBcp47MapV1::bcp47_ids
.
The checksum here should match the checksum in IanaToBcp47MapV1
if these were generated from the same data set.
canonical_iana_ids: VarZeroVec<'data, str>
The IANA time zone identifier corresponding to the BCP-47 ID in
IanaToBcp47MapV1::bcp47_ids
.
Since there can be more than one IANA identifier for a particular BCP-47 identifier, this list contains only the current canonical IANA identifier.
Trait Implementationsยง
sourceยงimpl<'data> Clone for Bcp47ToIanaMapV1<'data>
impl<'data> Clone for Bcp47ToIanaMapV1<'data>
sourceยงfn clone(&self) -> Bcp47ToIanaMapV1<'data>
fn clone(&self) -> Bcp47ToIanaMapV1<'data>
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<'data> Debug for Bcp47ToIanaMapV1<'data>
impl<'data> Debug for Bcp47ToIanaMapV1<'data>
sourceยงimpl<'data> PartialEq for Bcp47ToIanaMapV1<'data>
impl<'data> PartialEq for Bcp47ToIanaMapV1<'data>
sourceยงfn eq(&self, other: &Bcp47ToIanaMapV1<'data>) -> bool
fn eq(&self, other: &Bcp47ToIanaMapV1<'data>) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.sourceยงimpl<'a> Yokeable<'a> for Bcp47ToIanaMapV1<'static>
impl<'a> Yokeable<'a> for Bcp47ToIanaMapV1<'static>
ยงtype Output = Bcp47ToIanaMapV1<'a>
type Output = Bcp47ToIanaMapV1<'a>
This type MUST be
Self
with the 'static
replaced with 'a
, i.e. Self<'a>
sourceยงfn transform_owned(self) -> Self::Output
fn transform_owned(self) -> Self::Output
sourceยงimpl<'zf, 'zf_inner> ZeroFrom<'zf, Bcp47ToIanaMapV1<'zf_inner>> for Bcp47ToIanaMapV1<'zf>
impl<'zf, 'zf_inner> ZeroFrom<'zf, Bcp47ToIanaMapV1<'zf_inner>> for Bcp47ToIanaMapV1<'zf>
sourceยงfn zero_from(this: &'zf Bcp47ToIanaMapV1<'zf_inner>) -> Self
fn zero_from(this: &'zf Bcp47ToIanaMapV1<'zf_inner>) -> Self
Clone the other
C
into a struct that may retain references into C
.impl<'data> StructuralPartialEq for Bcp47ToIanaMapV1<'data>
Auto Trait Implementationsยง
impl<'data> Freeze for Bcp47ToIanaMapV1<'data>
impl<'data> RefUnwindSafe for Bcp47ToIanaMapV1<'data>
impl<'data> Send for Bcp47ToIanaMapV1<'data>
impl<'data> Sync for Bcp47ToIanaMapV1<'data>
impl<'data> Unpin for Bcp47ToIanaMapV1<'data>
impl<'data> UnwindSafe for Bcp47ToIanaMapV1<'data>
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