pub struct DateSkeletonPatterns<'data>(pub LiteMap<SkeletonData, PatternPlurals<'data>>);
Expand description
Skeleton data for dates and times, along with the corresponding plural pattern information.
🚧 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.
Tuple Fields§
§0: LiteMap<SkeletonData, PatternPlurals<'data>>
Trait Implementations§
Source§impl<'data> Clone for DateSkeletonPatterns<'data>
impl<'data> Clone for DateSkeletonPatterns<'data>
Source§fn clone(&self) -> DateSkeletonPatterns<'data>
fn clone(&self) -> DateSkeletonPatterns<'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§impl<'data> Debug for DateSkeletonPatterns<'data>
impl<'data> Debug for DateSkeletonPatterns<'data>
Source§impl<'data> Default for DateSkeletonPatterns<'data>
impl<'data> Default for DateSkeletonPatterns<'data>
Source§fn default() -> DateSkeletonPatterns<'data>
fn default() -> DateSkeletonPatterns<'data>
Returns the “default value” for a type. Read more
Source§impl<'data> PartialEq for DateSkeletonPatterns<'data>
impl<'data> PartialEq for DateSkeletonPatterns<'data>
impl<'data> StructuralPartialEq for DateSkeletonPatterns<'data>
Auto Trait Implementations§
impl<'data> Freeze for DateSkeletonPatterns<'data>
impl<'data> RefUnwindSafe for DateSkeletonPatterns<'data>
impl<'data> Send for DateSkeletonPatterns<'data>
impl<'data> Sync for DateSkeletonPatterns<'data>
impl<'data> Unpin for DateSkeletonPatterns<'data>
impl<'data> UnwindSafe for DateSkeletonPatterns<'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
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