pub struct TimeZoneIdMapperWithFastCanonicalizationBorrowed<'a> {
    inner: TimeZoneIdMapperBorrowed<'a>,
    data: &'a Bcp47ToIanaMapV1<'a>,
}
Expand description

A borrowed wrapper around the time zone ID mapper, returned by TimeZoneIdMapperWithFastCanonicalization::as_borrowed(). More efficient to query.

Fields§

§inner: TimeZoneIdMapperBorrowed<'a>§data: &'a Bcp47ToIanaMapV1<'a>

Implementations§

source§

impl<'a> TimeZoneIdMapperWithFastCanonicalizationBorrowed<'a>

source

pub fn inner(&self) -> TimeZoneIdMapperBorrowed<'a>

Gets the inner TimeZoneIdMapperBorrowed for performing queries.

source

pub fn canonicalize_iana( &self, iana_id: &str, ) -> Option<(&str, TimeZoneBcp47Id)>

Returns the canonical, normalized identifier of the given IANA time zone.

Also returns the BCP-47 time zone ID.

This is a faster version of TimeZoneIdMapperBorrowed::canonicalize_iana() and it always returns borrowed IANA strings, but it requires loading additional data (see TimeZoneIdMapperWithFastCanonicalization).

Returns None if the IANA ID is not found.

§Examples
use icu_timezone::TimeZoneBcp47Id;
use icu_timezone::TimeZoneIdMapperWithFastCanonicalization;
use std::borrow::Cow;

let mapper = TimeZoneIdMapperWithFastCanonicalization::new();
let mapper = mapper.as_borrowed();

let result = mapper.canonicalize_iana("Asia/CALCUTTA").unwrap();

// The Cow is always returned borrowed:
assert_eq!(result.0, "Asia/Kolkata");
assert_eq!(*result.1, "inccu");

// Unknown IANA time zone ID:
assert_eq!(mapper.canonicalize_iana("America/San_Francisco"), None);
source

pub fn canonical_iana_from_bcp47( &self, bcp47_id: TimeZoneBcp47Id, ) -> Option<&str>

Returns the canonical, normalized IANA ID of the given BCP-47 ID.

This is a faster version of TimeZoneIdMapperBorrowed::find_canonical_iana_from_bcp47() and it always returns borrowed IANA strings, but it requires loading additional data (see TimeZoneIdMapperWithFastCanonicalization).

Returns None if the BCP-47 ID is not found.

§Examples
use icu_timezone::TimeZoneBcp47Id;
use icu_timezone::TimeZoneIdMapperWithFastCanonicalization;
use std::borrow::Cow;
use tinystr::tinystr;

let mapper = TimeZoneIdMapperWithFastCanonicalization::new();
let mapper = mapper.as_borrowed();

let bcp47_id = TimeZoneBcp47Id(tinystr!(8, "inccu"));
let result = mapper.canonical_iana_from_bcp47(bcp47_id).unwrap();

// The Cow is always returned borrowed:
assert_eq!(result, "Asia/Kolkata");

// Unknown BCP-47 time zone ID:
let bcp47_id = TimeZoneBcp47Id(tinystr!(8, "ussfo"));
assert_eq!(mapper.canonical_iana_from_bcp47(bcp47_id), None);

Trait Implementations§

source§

impl<'a> Clone for TimeZoneIdMapperWithFastCanonicalizationBorrowed<'a>

source§

fn clone(&self) -> TimeZoneIdMapperWithFastCanonicalizationBorrowed<'a>

Returns a copy of the value. Read more
1.0.0 · source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
source§

impl<'a> Debug for TimeZoneIdMapperWithFastCanonicalizationBorrowed<'a>

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl<'a> Copy for TimeZoneIdMapperWithFastCanonicalizationBorrowed<'a>

Auto Trait Implementations§

Blanket Implementations§

source§

impl<T> Any for T
where T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for T
where T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T, U> Into<U> for T
where U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<T> ToOwned for T
where T: Clone,

§

type Owned = T

The resulting type after obtaining ownership.
source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
source§

impl<T> ErasedDestructor for T
where T: 'static,

source§

impl<T> MaybeSendSync for T