pub struct AbsoluteTime {
pub year: u16,
pub month: u8,
pub day: u8,
pub hour: Option<u8>,
pub minute: Option<u8>,
pub second: Option<u8>,
pub nanosecond: Option<u32>,
pub timezone: Option<Timezone>,
}Fields§
§year: u16§month: u8§day: u8§hour: Option<u8>§minute: Option<u8>§second: Option<u8>§nanosecond: Option<u32>§timezone: Option<Timezone>Trait Implementations§
Source§impl Clone for AbsoluteTime
impl Clone for AbsoluteTime
Source§fn clone(&self) -> AbsoluteTime
fn clone(&self) -> AbsoluteTime
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 AbsoluteTime
impl Debug for AbsoluteTime
Source§impl PartialEq for AbsoluteTime
impl PartialEq for AbsoluteTime
impl StructuralPartialEq for AbsoluteTime
Auto Trait Implementations§
impl Freeze for AbsoluteTime
impl RefUnwindSafe for AbsoluteTime
impl Send for AbsoluteTime
impl Sync for AbsoluteTime
impl Unpin for AbsoluteTime
impl UnwindSafe for AbsoluteTime
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