pub struct TimeZoneIdMapperWithFastCanonicalization<I> {
    inner: I,
    data: DataPayload<Bcp47ToIanaMapV1Marker>,
}
Expand description

A mapper that supplements TimeZoneIdMapper with about 8 KB of additional data to improve the performance of canonical IANA ID lookup.

The data in TimeZoneIdMapper is optimized for IANA to BCP-47 lookup; the reverse requires a linear walk over all ~600 IANA identifiers. The data added here allows for constant-time mapping from BCP-47 to IANA.

Fields§

§inner: I§data: DataPayload<Bcp47ToIanaMapV1Marker>

Implementations§

source§

impl TimeZoneIdMapperWithFastCanonicalization<TimeZoneIdMapper>

source

pub fn new() -> Self

Creates a new TimeZoneIdMapperWithFastCanonicalization using compiled data.

See TimeZoneIdMapperWithFastCanonicalization for an example.

Enabled with the compiled_data Cargo feature.

📚 Help choosing a constructor

source

pub fn try_new_with_any_provider( provider: &(impl AnyProvider + ?Sized), ) -> Result<Self, TimeZoneError>

A version of Self::new that uses custom data provided by an AnyProvider.

📚 Help choosing a constructor

source

pub fn try_new_unstable<P>(provider: &P) -> Result<Self, TimeZoneError>

A version of Self::new that uses custom data provided by a DataProvider.

📚 Help choosing a constructor

⚠️ The bounds on provider may change over time, including in SemVer minor releases.
source§

impl<I> TimeZoneIdMapperWithFastCanonicalization<I>

source

pub fn try_new_with_mapper(mapper: I) -> Result<Self, TimeZoneError>

Creates a new TimeZoneIdMapperWithFastCanonicalization using compiled data and a pre-existing TimeZoneIdMapper, which can be borrowed.

See TimeZoneIdMapperWithFastCanonicalization for an example.

Enabled with the compiled_data Cargo feature.

📚 Help choosing a constructor

source

pub fn try_new_with_mapper_with_any_provider( provider: &(impl AnyProvider + ?Sized), mapper: I, ) -> Result<Self, TimeZoneError>

A version of Self::try_new_with_mapper that uses custom data provided by an AnyProvider.

📚 Help choosing a constructor

source

pub fn try_new_with_mapper_unstable<P>( provider: &P, mapper: I, ) -> Result<Self, TimeZoneError>

A version of Self::new that uses custom data provided by a DataProvider.

📚 Help choosing a constructor

⚠️ The bounds on provider may change over time, including in SemVer minor releases.
source

fn validated(self) -> Result<Self, TimeZoneError>

source

pub fn inner(&self) -> &TimeZoneIdMapper

Gets the inner TimeZoneIdMapper for performing queries.

source

pub fn as_borrowed( &self, ) -> TimeZoneIdMapperWithFastCanonicalizationBorrowed<'_>

Returns a borrowed version of the mapper that can be queried.

This avoids a small potential indirection cost when querying the mapper.

Trait Implementations§

source§

impl<I: Clone> Clone for TimeZoneIdMapperWithFastCanonicalization<I>

source§

fn clone(&self) -> TimeZoneIdMapperWithFastCanonicalization<I>

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<I: Debug> Debug for TimeZoneIdMapperWithFastCanonicalization<I>

source§

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

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

impl Default for TimeZoneIdMapperWithFastCanonicalization<TimeZoneIdMapper>

source§

fn default() -> Self

Returns the “default value” for a type. Read more

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