pub struct NormalizedDate {
pub year: i32,
pub month: u8,
pub day: u8,
}Fields§
§year: i32§month: u8§day: u8Trait Implementations§
Source§impl Clone for NormalizedDate
impl Clone for NormalizedDate
Source§fn clone(&self) -> NormalizedDate
fn clone(&self) -> NormalizedDate
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 NormalizedDate
Source§impl Debug for NormalizedDate
impl Debug for NormalizedDate
impl Eq for NormalizedDate
Source§impl PartialEq for NormalizedDate
impl PartialEq for NormalizedDate
Source§fn eq(&self, other: &NormalizedDate) -> bool
fn eq(&self, other: &NormalizedDate) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for NormalizedDate
Auto Trait Implementations§
impl Freeze for NormalizedDate
impl RefUnwindSafe for NormalizedDate
impl Send for NormalizedDate
impl Sync for NormalizedDate
impl Unpin for NormalizedDate
impl UnsafeUnpin for NormalizedDate
impl UnwindSafe for NormalizedDate
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