Struct icu_calendar::calendar_arithmetic::ArithmeticDate

source ·
pub(crate) struct ArithmeticDate<C: CalendarArithmetic> {
    pub year: i32,
    pub month: u8,
    pub day: u8,
    pub year_info: C::YearInfo,
    marker: PhantomData<C>,
}

Fields§

§year: i32§month: u8

1-based month of year

§day: u8

1-based day of month

§year_info: C::YearInfo

Invariant: MUST be updated to match the info for year whenever year is updated or set.

§marker: PhantomData<C>

Implementations§

source§

impl<C: CalendarArithmetic> ArithmeticDate<C>

source

pub const fn new_unchecked(year: i32, month: u8, day: u8) -> Self
where C: CalendarArithmetic<YearInfo = ()>,

Create a new ArithmeticDate without checking that month and day are in bounds.

source

pub const fn new_unchecked_with_info( year: i32, month: u8, day: u8, year_info: C::YearInfo, ) -> Self

Create a new ArithmeticDate without checking that month and day are in bounds.

source

pub fn min_date() -> Self
where C: CalendarArithmetic<YearInfo = ()>,

source

pub fn max_date() -> Self
where C: CalendarArithmetic<YearInfo = ()>,

source

fn offset_days( &mut self, day_offset: i32, data: &impl PrecomputedDataSource<C::YearInfo>, )

source

fn offset_months( &mut self, month_offset: i32, data: &impl PrecomputedDataSource<C::YearInfo>, )

source

pub fn offset_date( &mut self, offset: DateDuration<C>, data: &impl PrecomputedDataSource<C::YearInfo>, )

source

pub fn until( &self, date2: ArithmeticDate<C>, _largest_unit: DateDurationUnit, _smaller_unit: DateDurationUnit, ) -> DateDuration<C>

source

pub fn days_in_year(&self) -> u16

source

pub fn months_in_year(&self) -> u8

source

pub fn days_in_month(&self) -> u8

source

pub fn day_of_year(&self) -> u16

source

pub fn date_from_year_day(year: i32, year_day: u32) -> ArithmeticDate<C>
where C: CalendarArithmetic<YearInfo = ()>,

source

pub fn day_of_month(&self) -> DayOfMonth

source

pub fn month(&self) -> FormattableMonth

The types::FormattableMonth for the current month (with month code) for a solar calendar Lunar calendars should not use this method and instead manually implement a month code resolver. Originally “solar_month” but renamed because it can be used for some lunar calendars

Returns “und” if run with months that are out of bounds for the current calendar.

source

pub fn new_from_codes<C2: Calendar>( cal: &C2, year: i32, month_code: MonthCode, day: u8, ) -> Result<Self, CalendarError>
where C: CalendarArithmetic<YearInfo = ()>,

Construct a new arithmetic date from a year, month code, and day, bounds checking the month and day Originally (new_from_solar_codes) but renamed because it works for some lunar calendars

source

pub fn new_from_ordinals( year: i32, month: u8, day: u8, ) -> Result<Self, CalendarError>
where C: CalendarArithmetic<YearInfo = ()>,

Construct a new arithmetic date from a year, month ordinal, and day, bounds checking the month and day Originally (new_from_solar_ordinals) but renamed because it works for some lunar calendars

source

pub fn new_from_ordinals_with_info( year: i32, month: u8, day: u8, info: C::YearInfo, ) -> Result<Self, CalendarError>

Construct a new arithmetic date from a year, month ordinal, and day, bounds checking the month and day

Trait Implementations§

source§

impl<C: CalendarArithmetic> Clone for ArithmeticDate<C>

source§

fn clone(&self) -> Self

Returns a copy of the value. Read more
1.0.0 · source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
source§

impl<C: Debug + CalendarArithmetic> Debug for ArithmeticDate<C>
where C::YearInfo: Debug,

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl<C: CalendarArithmetic> Hash for ArithmeticDate<C>

source§

fn hash<H>(&self, state: &mut H)
where H: Hasher,

Feeds this value into the given Hasher. Read more
1.3.0 · source§

fn hash_slice<H>(data: &[Self], state: &mut H)
where H: Hasher, Self: Sized,

Feeds a slice of this type into the given Hasher. Read more
source§

impl<C: CalendarArithmetic> Ord for ArithmeticDate<C>

source§

fn cmp(&self, other: &Self) -> Ordering

This method returns an Ordering between self and other. Read more
1.21.0 · source§

fn max(self, other: Self) -> Self
where Self: Sized,

Compares and returns the maximum of two values. Read more
1.21.0 · source§

fn min(self, other: Self) -> Self
where Self: Sized,

Compares and returns the minimum of two values. Read more
1.50.0 · source§

fn clamp(self, min: Self, max: Self) -> Self
where Self: Sized + PartialOrd,

Restrict a value to a certain interval. Read more
source§

impl<C: CalendarArithmetic> PartialEq for ArithmeticDate<C>

source§

fn eq(&self, other: &Self) -> bool

This method tests for self and other values to be equal, and is used by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
source§

impl<C: CalendarArithmetic> PartialOrd for ArithmeticDate<C>

source§

fn partial_cmp(&self, other: &Self) -> Option<Ordering>

This method returns an ordering between self and other values if one exists. Read more
1.0.0 · source§

fn lt(&self, other: &Rhs) -> bool

This method tests less than (for self and other) and is used by the < operator. Read more
1.0.0 · source§

fn le(&self, other: &Rhs) -> bool

This method tests less than or equal to (for self and other) and is used by the <= operator. Read more
1.0.0 · source§

fn gt(&self, other: &Rhs) -> bool

This method tests greater than (for self and other) and is used by the > operator. Read more
1.0.0 · source§

fn ge(&self, other: &Rhs) -> bool

This method tests greater than or equal to (for self and other) and is used by the >= operator. Read more
source§

impl<C: CalendarArithmetic> Copy for ArithmeticDate<C>

source§

impl<C: CalendarArithmetic> Eq for ArithmeticDate<C>

Auto Trait Implementations§

Blanket Implementations§

source§

impl<T> Any for T
where T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for T
where T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T, U> Into<U> for T
where U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<T> ToOwned for T
where T: Clone,

§

type Owned = T

The resulting type after obtaining ownership.
source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
source§

impl<T> ErasedDestructor for T
where T: 'static,

source§

impl<T> MaybeSendSync for T