pub struct ParsedDateTime {
pub year: i32,
pub month: u8,
pub day: u8,
pub hour: u8,
pub minute: u8,
pub second: f64,
}Fields§
§year: i32§month: u8§day: u8§hour: u8§minute: u8§second: f64Implementations§
Source§impl ParsedDateTime
impl ParsedDateTime
pub fn to_julian_date(&self) -> JulianDate
Trait Implementations§
Source§impl Clone for ParsedDateTime
impl Clone for ParsedDateTime
Source§fn clone(&self) -> ParsedDateTime
fn clone(&self) -> ParsedDateTime
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 moreAuto Trait Implementations§
impl Freeze for ParsedDateTime
impl RefUnwindSafe for ParsedDateTime
impl Send for ParsedDateTime
impl Sync for ParsedDateTime
impl Unpin for ParsedDateTime
impl UnsafeUnpin for ParsedDateTime
impl UnwindSafe for ParsedDateTime
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