Struct icu_datetime::provider::calendar::DateLengthsV1
source ยท pub struct DateLengthsV1<'data> {
pub date: LengthPatternsV1<'data>,
pub length_combinations: GenericLengthPatternsV1<'data>,
}
Expand description
Pattern data for dates. ๐ This item has a stack size of 224 bytes on the stable toolchain at release date.
๐ง 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ยง
ยงdate: LengthPatternsV1<'data>
Date pattern data, broken down by pattern length.
length_combinations: GenericLengthPatternsV1<'data>
Patterns used to combine date and time length patterns into full date_time patterns.
Trait Implementationsยง
sourceยงimpl<'data> Clone for DateLengthsV1<'data>
impl<'data> Clone for DateLengthsV1<'data>
sourceยงfn clone(&self) -> DateLengthsV1<'data>
fn clone(&self) -> DateLengthsV1<'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 DateLengthsV1<'data>
impl<'data> Debug for DateLengthsV1<'data>
sourceยงimpl<'data> Default for DateLengthsV1<'data>
impl<'data> Default for DateLengthsV1<'data>
sourceยงfn default() -> DateLengthsV1<'data>
fn default() -> DateLengthsV1<'data>
Returns the โdefault valueโ for a type. Read more
sourceยงimpl<'data> PartialEq for DateLengthsV1<'data>
impl<'data> PartialEq for DateLengthsV1<'data>
sourceยงfn eq(&self, other: &DateLengthsV1<'data>) -> bool
fn eq(&self, other: &DateLengthsV1<'data>) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.sourceยงimpl<'a> Yokeable<'a> for DateLengthsV1<'static>
impl<'a> Yokeable<'a> for DateLengthsV1<'static>
ยงtype Output = DateLengthsV1<'a>
type Output = DateLengthsV1<'a>
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
sourceยงimpl<'zf, 'zf_inner> ZeroFrom<'zf, DateLengthsV1<'zf_inner>> for DateLengthsV1<'zf>
impl<'zf, 'zf_inner> ZeroFrom<'zf, DateLengthsV1<'zf_inner>> for DateLengthsV1<'zf>
sourceยงfn zero_from(this: &'zf DateLengthsV1<'zf_inner>) -> Self
fn zero_from(this: &'zf DateLengthsV1<'zf_inner>) -> Self
Clone the other
C
into a struct that may retain references into C
.impl<'data> StructuralPartialEq for DateLengthsV1<'data>
Auto Trait Implementationsยง
impl<'data> Freeze for DateLengthsV1<'data>
impl<'data> RefUnwindSafe for DateLengthsV1<'data>
impl<'data> Send for DateLengthsV1<'data>
impl<'data> Sync for DateLengthsV1<'data>
impl<'data> Unpin for DateLengthsV1<'data>
impl<'data> UnwindSafe for DateLengthsV1<'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> 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