pub struct TimeZoneIdMapperWithFastCanonicalizationBorrowed<'a> { /* private fields */ }
Expand description

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

Implementations§

source§

impl TimeZoneIdMapperWithFastCanonicalizationBorrowed<'static>

source

pub fn new() -> TimeZoneIdMapperWithFastCanonicalizationBorrowed<'static>

Creates a new TimeZoneIdMapperWithFastCanonicalizationBorrowed using compiled data.

See TimeZoneIdMapperWithFastCanonicalizationBorrowed for an example.

Enabled with the compiled_data Cargo feature.

📚 Help choosing a constructor

source

pub fn static_to_owned( &self, ) -> TimeZoneIdMapperWithFastCanonicalization<TimeZoneIdMapper>

Cheaply converts a [TimeZoneIdMapperWithFastCanonicalizationBorrowed<'static>] into a TimeZoneIdMapperWithFastCanonicalization.

Note: Due to branching and indirection, using TimeZoneIdMapperWithFastCanonicalization might inhibit some compile-time optimizations that are possible with TimeZoneIdMapperWithFastCanonicalizationBorrowed.

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 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 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<(), Error>

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

impl Default for TimeZoneIdMapperWithFastCanonicalizationBorrowed<'static>

source§

fn default() -> TimeZoneIdMapperWithFastCanonicalizationBorrowed<'static>

Returns the “default value” for a type. 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> CloneToUninit for T
where T: Clone,

source§

unsafe fn clone_to_uninit(&self, dst: *mut T)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dst. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T> GetField<T> for T
where T: Copy,

source§

fn get_field(&self) -> T

Returns the value of this trait’s field T.
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> IntoEither for T

source§

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 more
source§

fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
where F: FnOnce(&Self) -> bool,

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
source§

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

source§

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>,

source§

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>,

source§

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
where T: Send + Sync,