pub struct Iso;
Expand description
The ISO Calendar
The ISO Calendar is a standardized solar calendar with twelve months. It is identical to the Gregorian calendar, except it uses negative years for years before 1 CE, and may have differing formatting data for a given locale.
This type can be used with Date
or DateTime
to represent dates in this calendar.
Era codes
This calendar supports one era, "default"
Implementations
Trait Implementations
sourceimpl Calendar for Iso
impl Calendar for Iso
sourcefn date_from_codes(
&self,
era: Era,
year: i32,
month_code: MonthCode,
day: u8
) -> Result<<Iso as Calendar>::DateInner, CalendarError>
fn date_from_codes(
&self,
era: Era,
year: i32,
month_code: MonthCode,
day: u8
) -> Result<<Iso as Calendar>::DateInner, CalendarError>
Construct a date from era/month codes and fields
sourcefn year(&self, date: &<Iso as Calendar>::DateInner) -> FormattableYear
fn year(&self, date: &<Iso as Calendar>::DateInner) -> FormattableYear
The calendar-specific year represented by date
sourcefn month(&self, date: &<Iso as Calendar>::DateInner) -> FormattableMonth
fn month(&self, date: &<Iso as Calendar>::DateInner) -> FormattableMonth
The calendar-specific month represented by date
sourcefn day_of_month(&self, date: &<Iso as Calendar>::DateInner) -> DayOfMonth
fn day_of_month(&self, date: &<Iso as Calendar>::DateInner) -> DayOfMonth
The calendar-specific day-of-month represented by date
type DateInner = IsoDateInner
type DateInner = IsoDateInner
The internal type used to represent dates
sourcefn date_from_iso(&self, iso: Date<Iso>) -> IsoDateInner
fn date_from_iso(&self, iso: Date<Iso>) -> IsoDateInner
Construct the date from an ISO date
sourcefn date_to_iso(&self, date: &<Iso as Calendar>::DateInner) -> Date<Iso>
fn date_to_iso(&self, date: &<Iso as Calendar>::DateInner) -> Date<Iso>
Obtain an ISO date from this date
sourcefn months_in_year(&self, date: &<Iso as Calendar>::DateInner) -> u8
fn months_in_year(&self, date: &<Iso as Calendar>::DateInner) -> u8
Count the number of months in a given year, specified by providing a date from that year Read more
sourcefn days_in_year(&self, date: &<Iso as Calendar>::DateInner) -> u32
fn days_in_year(&self, date: &<Iso as Calendar>::DateInner) -> u32
Count the number of days in a given year, specified by providing a date from that year Read more
sourcefn days_in_month(&self, date: &<Iso as Calendar>::DateInner) -> u8
fn days_in_month(&self, date: &<Iso as Calendar>::DateInner) -> u8
Count the number of days in a given month, specified by providing a date from that year/month Read more
sourcefn day_of_week(&self, date: &<Iso as Calendar>::DateInner) -> IsoWeekday
fn day_of_week(&self, date: &<Iso as Calendar>::DateInner) -> IsoWeekday
Calculate the day of the week and return it
fn offset_date(
&self,
date: &mut <Iso as Calendar>::DateInner,
offset: DateDuration<Iso>
)
fn until(
&self,
date1: &<Iso as Calendar>::DateInner,
date2: &<Iso as Calendar>::DateInner,
_calendar2: &Iso,
_largest_unit: DateDurationUnit,
_smallest_unit: DateDurationUnit
) -> DateDuration<Iso>
sourcefn day_of_year_info(&self, date: &<Iso as Calendar>::DateInner) -> DayOfYearInfo
fn day_of_year_info(&self, date: &<Iso as Calendar>::DateInner) -> DayOfYearInfo
Information of the day of the year
sourcefn debug_name(&self) -> &'static str
fn debug_name(&self) -> &'static str
Obtain a name for the calendar for debug printing
sourcefn any_calendar_kind(&self) -> Option<AnyCalendarKind>
fn any_calendar_kind(&self) -> Option<AnyCalendarKind>
The AnyCalendarKind
corresponding to this calendar,
if one exists. Implementors outside of icu_calendar should return None Read more
sourceimpl IntoAnyCalendar for Iso
impl IntoAnyCalendar for Iso
sourcefn to_any(self) -> AnyCalendar
fn to_any(self) -> AnyCalendar
Convert this calendar into an AnyCalendar
, moving it Read more
sourcefn to_any_cloned(&self) -> AnyCalendar
fn to_any_cloned(&self) -> AnyCalendar
Convert this calendar into an AnyCalendar
, cloning it Read more
sourcefn date_to_any(&self, d: &<Iso as Calendar>::DateInner) -> AnyDateInner
fn date_to_any(&self, d: &<Iso as Calendar>::DateInner) -> AnyDateInner
Convert a date for this calendar into an AnyDateInner
Read more
impl Copy for Iso
impl Eq for Iso
impl StructuralEq for Iso
impl StructuralPartialEq for Iso
Auto Trait Implementations
impl RefUnwindSafe for Iso
impl Send for Iso
impl Sync for Iso
impl Unpin for Iso
impl UnwindSafe for Iso
Blanket Implementations
sourceimpl<C> AsCalendar for C where
C: Calendar,
impl<C> AsCalendar for C where
C: Calendar,
type Calendar = C
type Calendar = C
The calendar being wrapped
sourcefn as_calendar(&self) -> &C
fn as_calendar(&self) -> &C
Obtain the inner calendar
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> 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