pub struct Hebrew;Expand description
The Hebrew Calendar
The Hebrew calendar is a lunisolar calendar used as the Jewish liturgical calendar as well as an official calendar in Israel.
This implementation uses civil month numbering, where Tishrei is the first month of the year.
The precise algorithm used to calculate the Hebrew Calendar has changed over time, with the modern one being in place since about 4536 AM (776 CE). This implementation extends proleptically for dates before that.
This corresponds to the "hebrew" CLDR calendar.
§Era codes
This calendar uses a single era code am, Anno Mundi. Dates before this era use negative years.
§Months and days
The 12 months are called Tishrei (M01, 30 days), Ḥešvan (M02, 29/30 days),
Kīslev (M03, 30/29 days), Ṭevet (M04, 29 days), Šəvaṭ (M05, 30 days), ʾĂdār (M06, 29 days),
Nīsān (M07, 30 days), ʾĪyyar (M08, 29 days), Sivan (M09, 30 days), Tammūz (M10, 29 days),
ʾAv (M11, 30 days), ʾElūl (M12, 29 days).
Due to Rosh Hashanah postponement rules, Ḥešvan and Kislev vary in length.
In leap years (years 3, 6, 8, 11, 17, 19 in a 19-year cycle), the leap month Adar I (M05L, 30 days)
is inserted before Adar, and Adar is called Adar II (the formatting_code returned by MonthInfo
will be M06L to mark this, while the standard_code remains M06).
Standard years thus have 353-355 days, and leap years 383-385.
Implementations§
Trait Implementations§
Source§impl Calendar for Hebrew
impl Calendar for Hebrew
Source§type DateInner = HebrewDateInner
type DateInner = HebrewDateInner
Source§type DifferenceError = Infallible
type DifferenceError = Infallible
untilSource§fn from_codes(
&self,
era: Option<&str>,
year: i32,
month_code: MonthCode,
day: u8,
) -> Result<Self::DateInner, DateError>
fn from_codes( &self, era: Option<&str>, year: i32, month_code: MonthCode, day: u8, ) -> Result<Self::DateInner, DateError>
Source§fn has_cheap_iso_conversion(&self) -> bool
fn has_cheap_iso_conversion(&self) -> bool
from_iso/to_iso is more efficient
than from_rata_die/to_rata_die.Source§fn months_in_year(&self, date: &Self::DateInner) -> u8
fn months_in_year(&self, date: &Self::DateInner) -> u8
Source§fn days_in_year(&self, date: &Self::DateInner) -> u16
fn days_in_year(&self, date: &Self::DateInner) -> u16
Source§fn days_in_month(&self, date: &Self::DateInner) -> u8
fn days_in_month(&self, date: &Self::DateInner) -> u8
Source§fn debug_name(&self) -> &'static str
fn debug_name(&self) -> &'static str
Source§fn is_in_leap_year(&self, date: &Self::DateInner) -> bool
fn is_in_leap_year(&self, date: &Self::DateInner) -> bool
Source§fn month(&self, date: &Self::DateInner) -> MonthInfo
fn month(&self, date: &Self::DateInner) -> MonthInfo
dateSource§fn day_of_month(&self, date: &Self::DateInner) -> DayOfMonth
fn day_of_month(&self, date: &Self::DateInner) -> DayOfMonth
dateSource§fn day_of_year(&self, date: &Self::DateInner) -> DayOfYear
fn day_of_year(&self, date: &Self::DateInner) -> DayOfYear
Source§fn calendar_algorithm(&self) -> Option<CalendarAlgorithm>
fn calendar_algorithm(&self) -> Option<CalendarAlgorithm>
CalendarAlgorithm that is required to match
when parsing into this calendar. Read moreSource§fn from_iso(&self, iso: IsoDateInner) -> Self::DateInner
fn from_iso(&self, iso: IsoDateInner) -> Self::DateInner
Source§fn to_iso(&self, date: &Self::DateInner) -> IsoDateInner
fn to_iso(&self, date: &Self::DateInner) -> IsoDateInner
Source§fn extended_year(&self, date: &Self::DateInner) -> i32
fn extended_year(&self, date: &Self::DateInner) -> i32
Source§impl DateFieldsResolver for Hebrew
impl DateFieldsResolver for Hebrew
Source§type YearInfo = HebrewYearInfo
type YearInfo = HebrewYearInfo
fn days_in_provided_month(info: HebrewYearInfo, ordinal_month: u8) -> u8
fn months_in_provided_year(info: HebrewYearInfo) -> u8
Source§fn year_info_from_era(
&self,
era: &[u8],
era_year: i32,
) -> Result<Self::YearInfo, UnknownEraError>
fn year_info_from_era( &self, era: &[u8], era_year: i32, ) -> Result<Self::YearInfo, UnknownEraError>
Source§fn year_info_from_extended(&self, extended_year: i32) -> Self::YearInfo
fn year_info_from_extended(&self, extended_year: i32) -> Self::YearInfo
Source§fn reference_year_from_month_day(
&self,
month_code: ValidMonthCode,
day: u8,
) -> Result<Self::YearInfo, EcmaReferenceYearError>
fn reference_year_from_month_day( &self, month_code: ValidMonthCode, day: u8, ) -> Result<Self::YearInfo, EcmaReferenceYearError>
Source§fn ordinal_month_from_code(
&self,
year: &Self::YearInfo,
month_code: ValidMonthCode,
options: DateFromFieldsOptions,
) -> Result<u8, MonthCodeError>
fn ordinal_month_from_code( &self, year: &Self::YearInfo, month_code: ValidMonthCode, options: DateFromFieldsOptions, ) -> Result<u8, MonthCodeError>
Source§fn month_code_from_ordinal(
&self,
year: &Self::YearInfo,
ordinal_month: u8,
) -> ValidMonthCode
fn month_code_from_ordinal( &self, year: &Self::YearInfo, ordinal_month: u8, ) -> ValidMonthCode
Source§impl From<Hebrew> for AnyCalendar
impl From<Hebrew> for AnyCalendar
Source§fn from(value: Hebrew) -> AnyCalendar
fn from(value: Hebrew) -> AnyCalendar
Source§impl IntoAnyCalendar for Hebrew
impl IntoAnyCalendar for Hebrew
Source§fn to_any(self) -> AnyCalendar
fn to_any(self) -> AnyCalendar
AnyCalendar, moving it Read moreSource§fn kind(&self) -> AnyCalendarKind
fn kind(&self) -> AnyCalendarKind
AnyCalendarKind enum variant associated with this calendarSource§fn from_any(any: AnyCalendar) -> Result<Self, AnyCalendar>
fn from_any(any: AnyCalendar) -> Result<Self, AnyCalendar>
Source§fn from_any_ref(any: &AnyCalendar) -> Option<&Self>
fn from_any_ref(any: &AnyCalendar) -> Option<&Self>
Source§fn date_to_any(&self, d: &Self::DateInner) -> AnyDateInner
fn date_to_any(&self, d: &Self::DateInner) -> AnyDateInner
AnyDateInner Read more