pub struct IslamicDateInner(/* private fields */);
Expand description
The inner date type used for representing Date
s of IslamicObservational
. See Date
and IslamicObservational
for more details.
Trait Implementations§
source§impl Clone for IslamicDateInner
impl Clone for IslamicDateInner
source§fn clone(&self) -> IslamicDateInner
fn clone(&self) -> IslamicDateInner
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresource§impl Debug for IslamicDateInner
impl Debug for IslamicDateInner
source§impl Hash for IslamicDateInner
impl Hash for IslamicDateInner
source§impl Ord for IslamicDateInner
impl Ord for IslamicDateInner
source§fn cmp(&self, other: &IslamicDateInner) -> Ordering
fn cmp(&self, other: &IslamicDateInner) -> Ordering
1.21.0 · source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
source§impl PartialEq for IslamicDateInner
impl PartialEq for IslamicDateInner
source§impl PartialOrd for IslamicDateInner
impl PartialOrd for IslamicDateInner
impl Copy for IslamicDateInner
impl Eq for IslamicDateInner
impl StructuralPartialEq for IslamicDateInner
Auto Trait Implementations§
impl Freeze for IslamicDateInner
impl RefUnwindSafe for IslamicDateInner
impl Send for IslamicDateInner
impl Sync for IslamicDateInner
impl Unpin for IslamicDateInner
impl UnwindSafe for IslamicDateInner
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)source§impl<T> IntoEither for T
impl<T> IntoEither for T
source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moresource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more