pub struct Parents<'data> {
pub parents: ZeroMap<'data, PotentialUtf8, (Language, Option<Script>, Option<Region>)>,
}Expand description
Locale fallback rules derived from CLDR parent locales data.
Fields§
§parents: ZeroMap<'data, PotentialUtf8, (Language, Option<Script>, Option<Region>)>Map from language identifier to language identifier, indicating that the language on the left should inherit from the language on the right.
Trait Implementations§
Source§impl MaybeAsVarULE for Parents<'_>
impl MaybeAsVarULE for Parents<'_>
Source§impl<'data> PartialEq for Parents<'data>
impl<'data> PartialEq for Parents<'data>
Source§impl<'yoke> Yokeable<'yoke> for Parents<'static>
impl<'yoke> Yokeable<'yoke> for Parents<'static>
Source§type Output = Parents<'yoke>
type Output = Parents<'yoke>
This type MUST be
Self with the 'static replaced with 'a, i.e. Self<'a>Source§fn transform_owned(self) -> Self::Output
fn transform_owned(self) -> Self::Output
impl<'data> StructuralPartialEq for Parents<'data>
Auto Trait Implementations§
impl<'data> Freeze for Parents<'data>
impl<'data> RefUnwindSafe for Parents<'data>
impl<'data> Send for Parents<'data>
impl<'data> Sync for Parents<'data>
impl<'data> Unpin for Parents<'data>
impl<'data> UnsafeUnpin for Parents<'data>
impl<'data> UnwindSafe for Parents<'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
Mutably borrows from an owned value. Read more