pub struct LikelySubtagsForLanguage<'data> {
pub language_script: ZeroMap<'data, (UnvalidatedTinyAsciiStr<3>, UnvalidatedTinyAsciiStr<4>), Region>,
pub language_region: ZeroMap<'data, (UnvalidatedTinyAsciiStr<3>, UnvalidatedTinyAsciiStr<3>), Script>,
pub language: ZeroMap<'data, UnvalidatedTinyAsciiStr<3>, (Script, Region)>,
pub und: (Language, Script, Region),
}Expand description
This likely subtags data is used for the minimize and maximize operations.
Each field defines a mapping from an old identifier to a new identifier, based upon the rules in https://www.unicode.org/reports/tr35/#Likely_Subtags.
The data is stored is broken down into smaller vectors based upon the rules defined for the likely subtags maximize algorithm.
For efficiency, only the relevant part of the LanguageIdentifier is stored
for searching and replacing. E.g., the language_script field is used to store
rules for LanguageIdentifiers that contain a language and a script, but not a
region.
This struct contains mappings when the input contains a language subtag.
Also see LikelySubtagsForScriptRegion.
Fieldsยง
ยงlanguage_script: ZeroMap<'data, (UnvalidatedTinyAsciiStr<3>, UnvalidatedTinyAsciiStr<4>), Region>Language and script.
language_region: ZeroMap<'data, (UnvalidatedTinyAsciiStr<3>, UnvalidatedTinyAsciiStr<3>), Script>Language and region.
language: ZeroMap<'data, UnvalidatedTinyAsciiStr<3>, (Script, Region)>Just language.
und: (Language, Script, Region)Undefined.
Trait Implementationsยง
Sourceยงfn clone(&self) -> LikelySubtagsForLanguage<'data>
fn clone(&self) -> LikelySubtagsForLanguage<'data>
1.0.0 ยท Sourceยงfn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moreSourceยงfn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Sourceยงfn eq(&self, other: &LikelySubtagsForLanguage<'data>) -> bool
fn eq(&self, other: &LikelySubtagsForLanguage<'data>) -> bool
self and other values to be equal, and is used by ==.Sourceยงtype Output = LikelySubtagsForLanguage<'a>
type Output = LikelySubtagsForLanguage<'a>
Self with the 'static replaced with 'a, i.e. Self<'a>Sourceยงfn transform_owned(self) -> Self::Output
fn transform_owned(self) -> Self::Output
Sourceยงfn zero_from(this: &'zf LikelySubtagsForLanguage<'zf_inner>) -> Self
fn zero_from(this: &'zf LikelySubtagsForLanguage<'zf_inner>) -> Self
C into a struct that may retain references into C.Auto Trait Implementationsยง
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