Struct icu_datetime::provider::calendar::TimeLengthsV1
source ยท pub struct TimeLengthsV1<'data> {
pub time_h11_h12: LengthPatternsV1<'data>,
pub time_h23_h24: LengthPatternsV1<'data>,
pub preferred_hour_cycle: CoarseHourCycle,
}
Expand description
Pattern data for times. ๐ This item has a stack size of 264 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ยง
ยงtime_h11_h12: LengthPatternsV1<'data>
These patterns are common uses of time formatting, broken down by the length of the pattern. Users can override the hour cycle with a preference, so there are two pattern groups stored here. Note that the pattern will contain either h11 or h12.
time_h23_h24: LengthPatternsV1<'data>
These patterns are common uses of time formatting, broken down by the length of the pattern. Users can override the hour cycle with a preference, so there are two pattern groups stored here. Note that the pattern will contain either h23 or h24.
preferred_hour_cycle: CoarseHourCycle
By default a locale will prefer one hour cycle type over another.
Trait Implementationsยง
sourceยงimpl<'data> Clone for TimeLengthsV1<'data>
impl<'data> Clone for TimeLengthsV1<'data>
sourceยงfn clone(&self) -> TimeLengthsV1<'data>
fn clone(&self) -> TimeLengthsV1<'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 TimeLengthsV1<'data>
impl<'data> Debug for TimeLengthsV1<'data>
sourceยงimpl<'data> Default for TimeLengthsV1<'data>
impl<'data> Default for TimeLengthsV1<'data>
sourceยงfn default() -> TimeLengthsV1<'data>
fn default() -> TimeLengthsV1<'data>
Returns the โdefault valueโ for a type. Read more
sourceยงimpl<'data> PartialEq for TimeLengthsV1<'data>
impl<'data> PartialEq for TimeLengthsV1<'data>
sourceยงfn eq(&self, other: &TimeLengthsV1<'data>) -> bool
fn eq(&self, other: &TimeLengthsV1<'data>) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.sourceยงimpl<'a> Yokeable<'a> for TimeLengthsV1<'static>
impl<'a> Yokeable<'a> for TimeLengthsV1<'static>
ยงtype Output = TimeLengthsV1<'a>
type Output = TimeLengthsV1<'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, TimeLengthsV1<'zf_inner>> for TimeLengthsV1<'zf>
impl<'zf, 'zf_inner> ZeroFrom<'zf, TimeLengthsV1<'zf_inner>> for TimeLengthsV1<'zf>
sourceยงfn zero_from(this: &'zf TimeLengthsV1<'zf_inner>) -> Self
fn zero_from(this: &'zf TimeLengthsV1<'zf_inner>) -> Self
Clone the other
C
into a struct that may retain references into C
.impl<'data> StructuralPartialEq for TimeLengthsV1<'data>
Auto Trait Implementationsยง
impl<'data> Freeze for TimeLengthsV1<'data>
impl<'data> RefUnwindSafe for TimeLengthsV1<'data>
impl<'data> Send for TimeLengthsV1<'data>
impl<'data> Sync for TimeLengthsV1<'data>
impl<'data> Unpin for TimeLengthsV1<'data>
impl<'data> UnwindSafe for TimeLengthsV1<'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