#[non_exhaustive]
pub enum AnyCalendar {
Show 17 variants Buddhist(Buddhist), Chinese(Chinese), Coptic(Coptic), Dangi(Dangi), Ethiopian(Ethiopian), Gregorian(Gregorian), Hebrew(Hebrew), Indian(Indian), IslamicCivil(IslamicCivil), IslamicObservational(IslamicObservational), IslamicTabular(IslamicTabular), IslamicUmmAlQura(IslamicUmmAlQura), Iso(Iso), Japanese(Japanese), JapaneseExtended(JapaneseExtended), Persian(Persian), Roc(Roc),
}
Expand description

This is a calendar that encompasses all formattable calendars supported by this crate

This allows for the construction of Date objects that have their calendar known at runtime.

This can be constructed by calling .into() on a concrete calendar type if the calendar type is known at compile time. When the type is known at runtime, the AnyCalendar::new() and sibling methods may be used.

Date can also be converted to AnyCalendar-compatible ones via Date::to_any().

There are many ways of constructing an AnyCalendar’d date:

use icu::calendar::{AnyCalendar, AnyCalendarKind, DateTime, japanese::Japanese, types::Time};
use icu::locid::locale;

let locale = locale!("en-u-ca-japanese"); // English with the Japanese calendar

let calendar = AnyCalendar::new_for_locale(&locale.into());
let calendar = Rc::new(calendar); // Avoid cloning it each time
                                  // If everything is a local reference, you may use icu_calendar::Ref instead.

// manually construct a datetime in this calendar
let manual_time = Time::try_new(12, 33, 12, 0).expect("failed to construct Time");
// construct from era code, year, month code, day, time, and a calendar
// This is March 28, 15 Heisei
let manual_datetime = DateTime::try_new_from_codes("heisei".parse().unwrap(), 15, "M03".parse().unwrap(), 28,
                                               manual_time, calendar.clone())
                    .expect("Failed to construct DateTime manually");


// construct another datetime by converting from ISO
let iso_datetime = DateTime::try_new_iso_datetime(2020, 9, 1, 12, 34, 28)
    .expect("Failed to construct ISO DateTime.");
let iso_converted = iso_datetime.to_calendar(calendar);

// Construct a datetime in the appropriate typed calendar and convert
let japanese_calendar = Japanese::new();
let japanese_datetime = DateTime::try_new_japanese_datetime("heisei".parse().unwrap(), 15, 3, 28,
                                                        12, 33, 12, japanese_calendar).unwrap();
// This is a DateTime<AnyCalendar>
let any_japanese_datetime = japanese_datetime.to_any();

Variants (Non-exhaustive)§

This enum is marked as non-exhaustive
Non-exhaustive enums could have additional variants added in future. Therefore, when matching against variants of non-exhaustive enums, an extra wildcard arm must be added to account for any future variants.
§

Buddhist(Buddhist)

A Buddhist calendar

§

Chinese(Chinese)

A Chinese calendar

§

Coptic(Coptic)

A Coptic calendar

§

Dangi(Dangi)

A Dangi calendar

§

Ethiopian(Ethiopian)

An Ethiopian calendar

§

Gregorian(Gregorian)

A Gregorian calendar

§

Hebrew(Hebrew)

A Hebrew calendar

§

Indian(Indian)

An Indian calendar

§

IslamicCivil(IslamicCivil)

An IslamicCivil calendar

§

IslamicObservational(IslamicObservational)

§

IslamicTabular(IslamicTabular)

An IslamicTabular calendar

§

IslamicUmmAlQura(IslamicUmmAlQura)

An IslamicUmmAlQura calendar

§

Iso(Iso)

An Iso calendar

§

Japanese(Japanese)

A Japanese calendar

§

JapaneseExtended(JapaneseExtended)

A JapaneseExtended calendar

§

Persian(Persian)

A Persian calendar

§

Roc(Roc)

A Roc calendar

Implementations§

source§

impl AnyCalendar

source

pub const fn new(kind: AnyCalendarKind) -> AnyCalendar

Constructs an AnyCalendar for a given calendar kind from compiled data.

As this requires a valid AnyCalendarKind to work, it does not do any kind of locale-based fallbacking. If this is desired, use Self::new_for_locale().

Enabled with the compiled_data Cargo feature.

📚 Help choosing a constructor

source

pub fn try_new_with_any_provider<P>( provider: &P, kind: AnyCalendarKind ) -> Result<AnyCalendar, CalendarError>where P: AnyProvider + ?Sized,

A version of Self::new that uses custom data provided by an AnyProvider.

📚 Help choosing a constructor

source

pub fn try_new_with_buffer_provider<P>( provider: &P, kind: AnyCalendarKind ) -> Result<AnyCalendar, CalendarError>where P: BufferProvider + ?Sized,

A version of Self::new that uses custom data provided by a BufferProvider.

Enabled with the serde feature.

📚 Help choosing a constructor

source

pub fn try_new_unstable<P>( provider: &P, kind: AnyCalendarKind ) -> Result<AnyCalendar, CalendarError>where P: DataProvider<JapaneseErasV1Marker> + DataProvider<JapaneseExtendedErasV1Marker> + ?Sized,

A version of Self::new that uses custom data provided by a DataProvider.

📚 Help choosing a constructor

⚠️ The bounds on provider may change over time, including in SemVer minor releases.
source

pub fn new_for_locale(locale: &DataLocale) -> AnyCalendar

Constructs an AnyCalendar for a given calendar kind from compiled data.

In case the locale’s calendar is unknown or unspecified, it will attempt to load the default calendar for the locale, falling back to gregorian.

Enabled with the compiled_data Cargo feature.

📚 Help choosing a constructor

source

pub fn try_new_for_locale_with_any_provider( provider: &(impl AnyProvider + ?Sized), locale: &DataLocale ) -> Result<AnyCalendar, CalendarError>

A version of Self::new_for_locale that uses custom data provided by an AnyProvider.

📚 Help choosing a constructor

source

pub fn try_new_for_locale_with_buffer_provider( provider: &(impl BufferProvider + ?Sized), locale: &DataLocale ) -> Result<AnyCalendar, CalendarError>

A version of Self::new_for_locale that uses custom data provided by a BufferProvider.

Enabled with the serde feature.

📚 Help choosing a constructor

source

pub fn try_new_for_locale_unstable<P>( provider: &P, locale: &DataLocale ) -> Result<AnyCalendar, CalendarError>where P: DataProvider<JapaneseErasV1Marker> + DataProvider<JapaneseExtendedErasV1Marker> + ?Sized,

A version of Self::new_for_locale that uses custom data provided by a DataProvider.

📚 Help choosing a constructor

⚠️ The bounds on provider may change over time, including in SemVer minor releases.
source

pub fn kind(&self) -> AnyCalendarKind

The AnyCalendarKind corresponding to the calendar this contains

source

pub fn convert_any_date<'a>( &'a self, date: &Date<impl AsCalendar<Calendar = AnyCalendar>> ) -> Date<Ref<'a, AnyCalendar>>

Given an AnyCalendar date, convert that date to another AnyCalendar date in this calendar, if conversion is needed

source

pub fn convert_any_datetime<'a>( &'a self, date: &DateTime<impl AsCalendar<Calendar = AnyCalendar>> ) -> DateTime<Ref<'a, AnyCalendar>>

Given an AnyCalendar datetime, convert that date to another AnyCalendar datetime in this calendar, if conversion is needed

Trait Implementations§

source§

impl Calendar for AnyCalendar

source§

fn year(&self, date: &<AnyCalendar as Calendar>::DateInner) -> FormattableYear

The calendar-specific year represented by date

source§

fn is_in_leap_year(&self, date: &<AnyCalendar as Calendar>::DateInner) -> bool

The calendar-specific check if date is in a leap year

source§

fn month(&self, date: &<AnyCalendar as Calendar>::DateInner) -> FormattableMonth

The calendar-specific month represented by date

source§

fn day_of_month( &self, date: &<AnyCalendar as Calendar>::DateInner ) -> DayOfMonth

The calendar-specific day-of-month represented by date

source§

fn day_of_year_info( &self, date: &<AnyCalendar as Calendar>::DateInner ) -> DayOfYearInfo

Information of the day of the year

§

type DateInner = AnyDateInner

The internal type used to represent dates
source§

fn date_from_codes( &self, era: Era, year: i32, month_code: MonthCode, day: u8 ) -> Result<<AnyCalendar as Calendar>::DateInner, CalendarError>

Construct a date from era/month codes and fields
source§

fn date_from_iso(&self, iso: Date<Iso>) -> AnyDateInner

Construct the date from an ISO date
source§

fn date_to_iso(&self, date: &<AnyCalendar as Calendar>::DateInner) -> Date<Iso>

Obtain an ISO date from this date
source§

fn months_in_year(&self, date: &<AnyCalendar as Calendar>::DateInner) -> u8

Count the number of months in a given year, specified by providing a date from that year
source§

fn days_in_year(&self, date: &<AnyCalendar as Calendar>::DateInner) -> u16

Count the number of days in a given year, specified by providing a date from that year
source§

fn days_in_month(&self, date: &<AnyCalendar as Calendar>::DateInner) -> u8

Count the number of days in a given month, specified by providing a date from that year/month
source§

fn debug_name(&self) -> &'static str

Obtain a name for the calendar for debug printing
source§

fn any_calendar_kind(&self) -> Option<AnyCalendarKind>

The AnyCalendarKind corresponding to this calendar, if one exists. Implementors outside of icu_calendar should return None
source§

fn day_of_week(&self, date: &Self::DateInner) -> IsoWeekday

Calculate the day of the week and return it
source§

impl Debug for AnyCalendar

source§

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

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

impl<C> From<C> for AnyCalendarwhere C: IntoAnyCalendar,

source§

fn from(c: C) -> AnyCalendar

Converts to this type from the input type.

Auto Trait Implementations§

Blanket Implementations§

source§

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

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<C> AsCalendar for Cwhere C: Calendar,

§

type Calendar = C

The calendar being wrapped
source§

fn as_calendar(&self) -> &C

Obtain the inner calendar
source§

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

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for Twhere 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 Twhere 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, U> TryFrom<U> for Twhere 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 Twhere 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.
§

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

source§

impl<T> MaybeSendSync for Twhere T: Send + Sync,