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 Bake for WeekDataV2
impl Bake for WeekDataV2
source§fn bake(&self, env: &CrateEnv) -> TokenStream
fn bake(&self, env: &CrateEnv) -> TokenStream
source§impl BakeSize for WeekDataV2
impl BakeSize for WeekDataV2
source§fn borrows_size(&self) -> usize
fn borrows_size(&self) -> usize
Returns the size
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<'de> Deserialize<'de> for WeekDataV2
impl<'de> Deserialize<'de> for WeekDataV2
source§fn deserialize<__D>(
__deserializer: __D,
) -> Result<WeekDataV2, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(
__deserializer: __D,
) -> Result<WeekDataV2, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
source§impl PartialEq for WeekDataV2
impl PartialEq for WeekDataV2
source§impl Serialize for WeekDataV2
impl Serialize for WeekDataV2
source§fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
Serialize this value into the given Serde serializer. Read more
source§impl<'a> Yokeable<'a> for WeekDataV2where
WeekDataV2: Sized,
impl<'a> Yokeable<'a> for WeekDataV2where
WeekDataV2: Sized,
source§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) -> <WeekDataV2 as Yokeable<'a>>::Output
fn transform_owned(self) -> <WeekDataV2 as Yokeable<'a>>::Output
source§unsafe fn make(this: <WeekDataV2 as Yokeable<'a>>::Output) -> WeekDataV2
unsafe fn make(this: <WeekDataV2 as Yokeable<'a>>::Output) -> WeekDataV2
This method can be used to cast away
Self<'a>
’s lifetime. Read moresource§fn transform_mut<F>(&'a mut self, f: F)
fn transform_mut<F>(&'a mut self, f: F)
This method must cast
self
between &'a mut Self<'static>
and &'a mut Self<'a>
,
and pass it to f
. Read moresource§impl<'zf> ZeroFrom<'zf, WeekDataV2> for WeekDataV2
impl<'zf> ZeroFrom<'zf, WeekDataV2> for WeekDataV2
source§fn zero_from(this: &'zf WeekDataV2) -> WeekDataV2
fn zero_from(this: &'zf WeekDataV2) -> WeekDataV2
Clone the other
C
into a struct that may retain references into C
.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
source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)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