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.
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
sourceimpl Bake for WeekDataV1
impl Bake for WeekDataV1
sourcefn bake(&self, env: &CrateEnv) -> TokenStream
fn bake(&self, env: &CrateEnv) -> TokenStream
Returns a TokenStream
that would evaluate to self
. Read more
sourceimpl Clone for WeekDataV1
impl Clone for WeekDataV1
sourcefn clone(&self) -> WeekDataV1
fn clone(&self) -> WeekDataV1
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source
. Read more
sourceimpl Debug for WeekDataV1
impl Debug for WeekDataV1
sourceimpl<'de> Deserialize<'de> for WeekDataV1
impl<'de> Deserialize<'de> for WeekDataV1
sourcefn deserialize<__D>(
__deserializer: __D
) -> Result<WeekDataV1, <__D as Deserializer<'de>>::Error> where
__D: Deserializer<'de>,
fn deserialize<__D>(
__deserializer: __D
) -> Result<WeekDataV1, <__D as Deserializer<'de>>::Error> where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
sourceimpl<'_> From<&'_ WeekDataV1> for WeekCalculator
impl<'_> From<&'_ WeekDataV1> for WeekCalculator
sourcefn from(other: &WeekDataV1) -> WeekCalculator
fn from(other: &WeekDataV1) -> WeekCalculator
Converts to this type from the input type.
sourceimpl From<WeekDataV1> for WeekCalculator
impl From<WeekDataV1> for WeekCalculator
sourcefn from(other: WeekDataV1) -> WeekCalculator
fn from(other: WeekDataV1) -> WeekCalculator
Converts to this type from the input type.
sourceimpl Serialize for WeekDataV1
impl Serialize for WeekDataV1
sourcefn 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
sourceimpl<'a> Yokeable<'a> for WeekDataV1
impl<'a> Yokeable<'a> for WeekDataV1
type Output = WeekDataV1
type Output = WeekDataV1
This type MUST be Self
with the 'static
replaced with 'a
, i.e. Self<'a>
sourcefn transform(&self) -> &<WeekDataV1 as Yokeable<'a>>::Output
fn transform(&self) -> &<WeekDataV1 as Yokeable<'a>>::Output
This method must cast self
between &'a Self<'static>
and &'a Self<'a>
. Read more
sourcefn transform_owned(self) -> <WeekDataV1 as Yokeable<'a>>::Output
fn transform_owned(self) -> <WeekDataV1 as Yokeable<'a>>::Output
This method must cast self
between Self<'static>
and Self<'a>
. Read more
sourceunsafe fn make(this: <WeekDataV1 as Yokeable<'a>>::Output) -> WeekDataV1
unsafe fn make(this: <WeekDataV1 as Yokeable<'a>>::Output) -> WeekDataV1
This method can be used to cast away Self<'a>
’s lifetime. Read more
sourcefn transform_mut<F>(&'a mut self, f: F) where
F: 'static + for<'b> FnOnce(&'b mut <WeekDataV1 as Yokeable<'a>>::Output),
fn transform_mut<F>(&'a mut self, f: F) where
F: 'static + for<'b> FnOnce(&'b mut <WeekDataV1 as Yokeable<'a>>::Output),
This method must cast self
between &'a mut Self<'static>
and &'a mut Self<'a>
,
and pass it to f
. Read more
sourceimpl<'zf> ZeroFrom<'zf, WeekDataV1> for WeekDataV1
impl<'zf> ZeroFrom<'zf, WeekDataV1> for WeekDataV1
sourcefn zero_from(this: &'zf WeekDataV1) -> WeekDataV1
fn zero_from(this: &'zf WeekDataV1) -> WeekDataV1
Clone the other C
into a struct that may retain references into C
.
impl Copy for WeekDataV1
impl<'a> IsCovariant<'a> for WeekDataV1
Auto Trait Implementations
impl RefUnwindSafe for WeekDataV1
impl Send for WeekDataV1
impl Sync for WeekDataV1
impl Unpin for WeekDataV1
impl UnwindSafe for WeekDataV1
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<T> Serialize for T where
T: Serialize + ?Sized,
impl<T> Serialize for T where
T: Serialize + ?Sized,
fn erased_serialize(&self, serializer: &mut dyn Serializer) -> Result<Ok, Error>
sourceimpl<T> ToOwned for T where
T: Clone,
impl<T> ToOwned for T where
T: Clone,
type Owned = T
type Owned = T
The resulting type after obtaining ownership.
sourcefn clone_into(&self, target: &mut T)
fn clone_into(&self, target: &mut T)
toowned_clone_into
)Uses borrowed data to replace owned data, usually by cloning. Read more