pub struct ObservationalIslamicMarker;
Expand description

Marker type for observational islamic calendar, for use with IslamicBasedMarker

Trait Implementations§

source§

impl Clone for ObservationalIslamicMarker

source§

fn clone(&self) -> ObservationalIslamicMarker

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 Debug for ObservationalIslamicMarker

source§

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

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

impl Hash for ObservationalIslamicMarker

source§

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

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 IslamicBasedMarker for ObservationalIslamicMarker

source§

const EPOCH: RataDie = FIXED_ISLAMIC_EPOCH_FRIDAY

The epoch of the calendar. Different calendars use a different epoch (Thu or Fri) due to disagreement on the exact date of Mohammed’s migration to Mecca.
source§

const DEBUG_NAME: &'static str = "ObservationalIslamic"

The name of the calendar for debugging.
source§

const HAS_353_DAY_YEARS: bool = true

Whether this calendar is known to have 353-day years. This is probably a bug; see https://github.com/unicode-org/icu4x/issues/4930
source§

fn fixed_from_islamic(year: i32, month: u8, day: u8) -> RataDie

Convert an islamic date in this calendar to a R.D.
source§

fn islamic_from_fixed(date: RataDie) -> (i32, u8, u8)

Convert an R.D. To an islamic date in this calendar
source§

fn mean_synodic_ny(extended_year: i32) -> RataDie

Given the extended year, calculate the approximate new year using the mean synodic month
source§

fn approximate_islamic_from_fixed(date: RataDie) -> i32

Given an iso date, calculate the approximate islamic year it corresponds to (for quick cache lookup)
source§

fn month_lengths_for_year(extended_year: i32, ny: RataDie) -> [bool; 12]

Given an extended year, calculate whether each month is 29 or 30 days long
source§

impl PartialEq for ObservationalIslamicMarker

source§

fn eq(&self, other: &ObservationalIslamicMarker) -> 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 Copy for ObservationalIslamicMarker

source§

impl Eq for ObservationalIslamicMarker

source§

impl StructuralPartialEq for ObservationalIslamicMarker

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, 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.