icu_locid_transform::provider

Struct AliasesV1

Source
pub struct AliasesV1<'data> {
    pub language_variants: VarZeroVec<'data, StrStrPairVarULE>,
    pub sgn_region: ZeroMap<'data, UnvalidatedTinyAsciiStr<3>, Language>,
    pub language_len2: ZeroMap<'data, UnvalidatedTinyAsciiStr<2>, str>,
    pub language_len3: ZeroMap<'data, UnvalidatedTinyAsciiStr<3>, str>,
    pub language: VarZeroVec<'data, StrStrPairVarULE>,
    pub script: ZeroMap<'data, UnvalidatedTinyAsciiStr<4>, Script>,
    pub region_alpha: ZeroMap<'data, UnvalidatedTinyAsciiStr<2>, Region>,
    pub region_num: ZeroMap<'data, UnvalidatedTinyAsciiStr<3>, Region>,
    pub complex_region: ZeroMap<'data, UnvalidatedTinyAsciiStr<3>, ZeroSlice<Region>>,
    pub variant: ZeroMap<'data, UnvalidatedTinyAsciiStr<8>, Variant>,
    pub subdivision: ZeroMap<'data, UnvalidatedTinyAsciiStr<7>, TinyAsciiStr<7>>,
}
Expand description

This alias data is used for locale canonicalization. Each field defines a mapping from an old identifier to a new identifier, based upon the rules in from http://unicode.org/reports/tr35/#LocaleId_Canonicalization. The data is stored in sorted order, allowing for binary search to identify rules to apply. It is broken down into smaller vectors based upon some characteristic of the data, to help avoid unnecessary searches. For example, the sgn_region field contains aliases for sign language and region, so that it is not necessary to search the data unless the input is a sign language.

The algorithm in tr35 is not guaranteed to terminate on data other than what is currently in CLDR. For this reason, it is not a good idea to attempt to add or modify aliases for use in this structure.

๐Ÿšง 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ยง

ยงlanguage_variants: VarZeroVec<'data, StrStrPairVarULE>

[language(-variant)+\] -> [langid] This is not a map as itโ€™s searched linearly according to the canonicalization rules.

ยงsgn_region: ZeroMap<'data, UnvalidatedTinyAsciiStr<3>, Language>

sgn-[region] -> [language]

ยงlanguage_len2: ZeroMap<'data, UnvalidatedTinyAsciiStr<2>, str>

[language{2}] -> [langid]

ยงlanguage_len3: ZeroMap<'data, UnvalidatedTinyAsciiStr<3>, str>

[language{3}] -> [langid]

ยงlanguage: VarZeroVec<'data, StrStrPairVarULE>

[langid] -> [langid] This is not a map as itโ€™s searched linearly according to the canonicalization rules.

ยงscript: ZeroMap<'data, UnvalidatedTinyAsciiStr<4>, Script>

[script] -> [script]

ยงregion_alpha: ZeroMap<'data, UnvalidatedTinyAsciiStr<2>, Region>

[region{2}] -> [region]

ยงregion_num: ZeroMap<'data, UnvalidatedTinyAsciiStr<3>, Region>

[region{3}] -> [region]

ยงcomplex_region: ZeroMap<'data, UnvalidatedTinyAsciiStr<3>, ZeroSlice<Region>>

[region] -> [region]+

ยงvariant: ZeroMap<'data, UnvalidatedTinyAsciiStr<8>, Variant>

[variant] -> [variant]

ยงsubdivision: ZeroMap<'data, UnvalidatedTinyAsciiStr<7>, TinyAsciiStr<7>>

[value{7}] -> [value{7}]

Trait Implementationsยง

Sourceยง

impl<'data> Clone for AliasesV1<'data>

Sourceยง

fn clone(&self) -> AliasesV1<'data>

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<'data> Debug for AliasesV1<'data>

Sourceยง

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

Formats the value using the given formatter. Read more
Sourceยง

impl<'data> Default for AliasesV1<'data>

Sourceยง

fn default() -> AliasesV1<'data>

Returns the โ€œdefault valueโ€ for a type. Read more
Sourceยง

impl<'data> PartialEq for AliasesV1<'data>

Sourceยง

fn eq(&self, other: &AliasesV1<'data>) -> bool

Tests for self and other values to be equal, and is used by ==.
1.0.0 ยท Sourceยง

fn ne(&self, other: &Rhs) -> bool

Tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
Sourceยง

impl<'data> TryFrom<AliasesV1<'data>> for AliasesV2<'data>

Sourceยง

type Error = DataError

The type returned in the event of a conversion error.
Sourceยง

fn try_from(value: AliasesV1<'data>) -> Result<Self, Self::Error>

Performs the conversion.
Sourceยง

impl<'a> Yokeable<'a> for AliasesV1<'static>

Sourceยง

type Output = AliasesV1<'a>

This type MUST be Self with the 'static replaced with 'a, i.e. Self<'a>
Sourceยง

fn transform(&'a self) -> &'a Self::Output

This method must cast self between &'a Self<'static> and &'a Self<'a>. Read more
Sourceยง

fn transform_owned(self) -> Self::Output

This method must cast self between Self<'static> and Self<'a>. Read more
Sourceยง

unsafe fn make(this: Self::Output) -> Self

This method can be used to cast away Self<'a>โ€™s lifetime. Read more
Sourceยง

fn transform_mut<F>(&'a mut self, f: F)
where F: 'static + for<'b> FnOnce(&'b mut Self::Output),

This method must cast self between &'a mut Self<'static> and &'a mut Self<'a>, and pass it to f. Read more
Sourceยง

impl<'zf, 'zf_inner> ZeroFrom<'zf, AliasesV1<'zf_inner>> for AliasesV1<'zf>

Sourceยง

fn zero_from(this: &'zf AliasesV1<'zf_inner>) -> Self

Clone the other C into a struct that may retain references into C.
Sourceยง

impl<'data> StructuralPartialEq for AliasesV1<'data>

Auto Trait Implementationsยง

ยง

impl<'data> Freeze for AliasesV1<'data>

ยง

impl<'data> RefUnwindSafe for AliasesV1<'data>

ยง

impl<'data> Send for AliasesV1<'data>

ยง

impl<'data> Sync for AliasesV1<'data>

ยง

impl<'data> Unpin for AliasesV1<'data>

ยง

impl<'data> UnwindSafe for AliasesV1<'data>

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 u8)

๐Ÿ”ฌ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, 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,

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