pub struct Aliases<'data> {
pub language_variants: VarZeroVec<'data, LanguageStrStrPairVarULE>,
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.
Fieldsยง
ยงlanguage_variants: VarZeroVec<'data, LanguageStrStrPairVarULE>
[language, variant(-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<'de, 'data> Deserialize<'de> for Aliases<'data>where
'de: 'data,
impl<'de, 'data> Deserialize<'de> for Aliases<'data>where
'de: 'data,
Sourceยงfn deserialize<__D>(
__deserializer: __D,
) -> Result<Aliases<'data>, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(
__deserializer: __D,
) -> Result<Aliases<'data>, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
Sourceยงimpl MaybeAsVarULE for Aliases<'_>
impl MaybeAsVarULE for Aliases<'_>
Sourceยงimpl<'a> Yokeable<'a> for Aliases<'static>
impl<'a> Yokeable<'a> for Aliases<'static>
Sourceยงtype Output = Aliases<'a>
type Output = Aliases<'a>
Self
with the 'static
replaced with 'a
, i.e. Self<'a>
impl<'data> StructuralPartialEq for Aliases<'data>
Auto Trait Implementationsยง
impl<'data> Freeze for Aliases<'data>
impl<'data> RefUnwindSafe for Aliases<'data>
impl<'data> Send for Aliases<'data>
impl<'data> Sync for Aliases<'data>
impl<'data> Unpin for Aliases<'data>
impl<'data> UnwindSafe for Aliases<'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
Sourceยงimpl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Sourceยงimpl<T> IntoEither for T
impl<T> IntoEither for T
Sourceยงfn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
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 moreSourceยงfn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
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