Struct icu_calendar::provider::WeekDataV1
source · pub struct WeekDataV1 {
pub first_weekday: IsoWeekday,
pub min_week_days: u8,
}
Expand description
An ICU4X mapping to a subset of CLDR weekData. See CLDR-JSON’s weekData.json for more context.
🚧 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§
§first_weekday: IsoWeekday
The first day of a week.
min_week_days: u8
For a given week, the minimum number of that week’s days present in a given month or year for the week to be considered part of that month or year.
Trait Implementations§
source§impl Clone for WeekDataV1
impl Clone for WeekDataV1
source§fn clone(&self) -> WeekDataV1
fn clone(&self) -> WeekDataV1
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 Debug for WeekDataV1
impl Debug for WeekDataV1
source§impl From<&WeekDataV1> for WeekCalculator
impl From<&WeekDataV1> for WeekCalculator
source§fn from(other: &WeekDataV1) -> Self
fn from(other: &WeekDataV1) -> Self
Converts to this type from the input type.
source§impl From<WeekDataV1> for WeekCalculator
impl From<WeekDataV1> for WeekCalculator
source§fn from(other: WeekDataV1) -> Self
fn from(other: WeekDataV1) -> Self
Converts to this type from the input type.
source§impl PartialEq for WeekDataV1
impl PartialEq for WeekDataV1
source§fn eq(&self, other: &WeekDataV1) -> bool
fn eq(&self, other: &WeekDataV1) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.source§impl<'a> Yokeable<'a> for WeekDataV1where
Self: Sized,
impl<'a> Yokeable<'a> for WeekDataV1where
Self: Sized,
§type Output = WeekDataV1
type Output = WeekDataV1
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> ZeroFrom<'zf, WeekDataV1> for WeekDataV1
impl<'zf> ZeroFrom<'zf, WeekDataV1> for WeekDataV1
impl Copy for WeekDataV1
impl StructuralPartialEq for WeekDataV1
Auto Trait Implementations§
impl Freeze for WeekDataV1
impl RefUnwindSafe for WeekDataV1
impl Send for WeekDataV1
impl Sync for WeekDataV1
impl Unpin for WeekDataV1
impl UnwindSafe for WeekDataV1
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