Struct icu_calendar::provider::WeekDataV2
source · pub struct WeekDataV2 {
pub first_weekday: IsoWeekday,
pub min_week_days: u8,
pub weekend: WeekdaySet,
}
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.
weekend: WeekdaySet
Bitset representing weekdays that are part of the ‘weekend’, for calendar purposes. The number of days can be different between locales, and may not be contiguous.
Trait Implementations§
source§impl Clone for WeekDataV2
impl Clone for WeekDataV2
source§fn clone(&self) -> WeekDataV2
fn clone(&self) -> WeekDataV2
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 WeekDataV2
impl Debug for WeekDataV2
source§impl PartialEq for WeekDataV2
impl PartialEq for WeekDataV2
source§fn eq(&self, other: &WeekDataV2) -> bool
fn eq(&self, other: &WeekDataV2) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.source§impl<'a> Yokeable<'a> for WeekDataV2where
Self: Sized,
impl<'a> Yokeable<'a> for WeekDataV2where
Self: Sized,
§type Output = WeekDataV2
type Output = WeekDataV2
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, WeekDataV2> for WeekDataV2
impl<'zf> ZeroFrom<'zf, WeekDataV2> for WeekDataV2
impl Copy for WeekDataV2
impl StructuralPartialEq for WeekDataV2
Auto Trait Implementations§
impl Freeze for WeekDataV2
impl RefUnwindSafe for WeekDataV2
impl Send for WeekDataV2
impl Sync for WeekDataV2
impl Unpin for WeekDataV2
impl UnwindSafe for WeekDataV2
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