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 LanguageIdentifier
s 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<LikelySubtagsForLanguage<'data>, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(
__deserializer: __D,
) -> Result<LikelySubtagsForLanguage<'data>, <__D as Deserializer<'de>>::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(
&'a self,
) -> &'a <LikelySubtagsForLanguage<'static> as Yokeable<'a>>::Output
fn transform( &'a self, ) -> &'a <LikelySubtagsForLanguage<'static> as Yokeable<'a>>::Output
Sourceยงfn transform_owned(
self,
) -> <LikelySubtagsForLanguage<'static> as Yokeable<'a>>::Output
fn transform_owned( self, ) -> <LikelySubtagsForLanguage<'static> as Yokeable<'a>>::Output
Sourceยงunsafe fn make(
this: <LikelySubtagsForLanguage<'static> as Yokeable<'a>>::Output,
) -> LikelySubtagsForLanguage<'static>
unsafe fn make( this: <LikelySubtagsForLanguage<'static> as Yokeable<'a>>::Output, ) -> LikelySubtagsForLanguage<'static>
Self<'a>
โs lifetime. Read moreSourceยงfn transform_mut<F>(&'a mut self, f: F)where
F: 'static + for<'b> FnOnce(&'b mut <LikelySubtagsForLanguage<'static> as Yokeable<'a>>::Output),
fn transform_mut<F>(&'a mut self, f: F)where
F: 'static + for<'b> FnOnce(&'b mut <LikelySubtagsForLanguage<'static> as Yokeable<'a>>::Output),
self
between &'a mut Self<'static>
and &'a mut Self<'a>
,
and pass it to f
. Read moreSourceยงfn zero_from(
this: &'zf LikelySubtagsForLanguage<'zf_inner>,
) -> LikelySubtagsForLanguage<'zf>
fn zero_from( this: &'zf LikelySubtagsForLanguage<'zf_inner>, ) -> LikelySubtagsForLanguage<'zf>
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