pub struct ResolvedDay {
pub year: i32,
pub month: u8,
pub day: i32,
}Expand description
A fully-resolved (and month-normalised) calendar day.
Fields§
§year: i32§month: u8§day: i32Trait Implementations§
Source§impl Clone for ResolvedDay
impl Clone for ResolvedDay
Source§fn clone(&self) -> ResolvedDay
fn clone(&self) -> ResolvedDay
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreimpl Copy for ResolvedDay
Source§impl Debug for ResolvedDay
impl Debug for ResolvedDay
impl Eq for ResolvedDay
Source§impl PartialEq for ResolvedDay
impl PartialEq for ResolvedDay
Source§fn eq(&self, other: &ResolvedDay) -> bool
fn eq(&self, other: &ResolvedDay) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for ResolvedDay
Auto Trait Implementations§
impl Freeze for ResolvedDay
impl RefUnwindSafe for ResolvedDay
impl Send for ResolvedDay
impl Sync for ResolvedDay
impl Unpin for ResolvedDay
impl UnsafeUnpin for ResolvedDay
impl UnwindSafe for ResolvedDay
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