pub struct AbsoluteDate {
pub year: i16,
pub month: i8,
pub day: i8,
}Expand description
Absolute date components.
Fields§
§year: i16§month: i8§day: i8Trait Implementations§
Source§impl Clone for AbsoluteDate
impl Clone for AbsoluteDate
Source§fn clone(&self) -> AbsoluteDate
fn clone(&self) -> AbsoluteDate
Returns a duplicate 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 AbsoluteDate
impl Debug for AbsoluteDate
Source§impl PartialEq for AbsoluteDate
impl PartialEq for AbsoluteDate
impl Eq for AbsoluteDate
impl StructuralPartialEq for AbsoluteDate
Auto Trait Implementations§
impl Freeze for AbsoluteDate
impl RefUnwindSafe for AbsoluteDate
impl Send for AbsoluteDate
impl Sync for AbsoluteDate
impl Unpin for AbsoluteDate
impl UnsafeUnpin for AbsoluteDate
impl UnwindSafe for AbsoluteDate
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