pub struct LikelySubtagsForScriptRegion<'data> {
    pub script_region: ZeroMap<'data, (UnvalidatedTinyAsciiStr<4>, UnvalidatedTinyAsciiStr<3>), Language>,
    pub script: ZeroMap<'data, UnvalidatedTinyAsciiStr<4>, (Language, Region)>,
    pub region: ZeroMap<'data, UnvalidatedTinyAsciiStr<3>, (Language, Script)>,
}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 script_region field is used to store
rules for LanguageIdentifiers that contain a script and a region, but not a
language.
This struct contains mappings when the input does not contain a language subtag.
Also see LikelySubtagsForLanguage.
๐ง 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ยง
ยงscript_region: ZeroMap<'data, (UnvalidatedTinyAsciiStr<4>, UnvalidatedTinyAsciiStr<3>), Language>Script and region.
script: ZeroMap<'data, UnvalidatedTinyAsciiStr<4>, (Language, Region)>Just script.
region: ZeroMap<'data, UnvalidatedTinyAsciiStr<3>, (Language, Script)>Just region.
Trait Implementationsยง
Sourceยงfn clone(&self) -> LikelySubtagsForScriptRegion<'data>
 
fn clone(&self) -> LikelySubtagsForScriptRegion<'data>
Returns a copy of the value. Read more
1.0.0 ยท Sourceยงfn clone_from(&mut self, source: &Self)
 
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from 
source. Read moreSourceยงfn deserialize<__D>(
    __deserializer: __D,
) -> Result<LikelySubtagsForScriptRegion<'data>, <__D as Deserializer<'de>>::Error>where
    __D: Deserializer<'de>,
 
fn deserialize<__D>(
    __deserializer: __D,
) -> Result<LikelySubtagsForScriptRegion<'data>, <__D as Deserializer<'de>>::Error>where
    __D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Sourceยงfn eq(&self, other: &LikelySubtagsForScriptRegion<'data>) -> bool
 
fn eq(&self, other: &LikelySubtagsForScriptRegion<'data>) -> bool
Tests for 
self and other values to be equal, and is used by ==.Sourceยงtype Output = LikelySubtagsForScriptRegion<'a>
 
type Output = LikelySubtagsForScriptRegion<'a>
This type MUST be 
Self with the 'static replaced with 'a, i.e. Self<'a>Sourceยงfn transform(
    &'a self,
) -> &'a <LikelySubtagsForScriptRegion<'static> as Yokeable<'a>>::Output
 
fn transform( &'a self, ) -> &'a <LikelySubtagsForScriptRegion<'static> as Yokeable<'a>>::Output
Sourceยงfn transform_owned(
    self,
) -> <LikelySubtagsForScriptRegion<'static> as Yokeable<'a>>::Output
 
fn transform_owned( self, ) -> <LikelySubtagsForScriptRegion<'static> as Yokeable<'a>>::Output
Sourceยงunsafe fn make(
    this: <LikelySubtagsForScriptRegion<'static> as Yokeable<'a>>::Output,
) -> LikelySubtagsForScriptRegion<'static>
 
unsafe fn make( this: <LikelySubtagsForScriptRegion<'static> as Yokeable<'a>>::Output, ) -> LikelySubtagsForScriptRegion<'static>
This method can be used to cast away 
Self<'a>โs lifetime. Read moreSourceยงfn transform_mut<F>(&'a mut self, f: F)where
    F: 'static + for<'b> FnOnce(&'b mut <LikelySubtagsForScriptRegion<'static> as Yokeable<'a>>::Output),
 
fn transform_mut<F>(&'a mut self, f: F)where
    F: 'static + for<'b> FnOnce(&'b mut <LikelySubtagsForScriptRegion<'static> as Yokeable<'a>>::Output),
This method must cast 
self between &'a mut Self<'static> and &'a mut Self<'a>,
and pass it to f. Read moreSourceยงfn zero_from(
    this: &'zf LikelySubtagsForScriptRegion<'zf_inner>,
) -> LikelySubtagsForScriptRegion<'zf>
 
fn zero_from( this: &'zf LikelySubtagsForScriptRegion<'zf_inner>, ) -> LikelySubtagsForScriptRegion<'zf>
Clone the other 
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
Mutably borrows from an owned value. Read more
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>
Converts 
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>
Converts 
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