pub struct TaiUtcPre1972 {
pub yr: i32,
pub mo: u8,
pub day: u8,
pub jd: Real,
pub mjd_ref: Real,
pub offset: Real,
pub drift: Real,
}Fields§
§yr: i32Year of the effective UTC date
mo: u8Month (1-12) of the effective UTC date
day: u8Day of the effective UTC date
jd: RealJulian Date (JD) at 0h UT on the effective date (start of interval)
mjd_ref: RealReference MJD used in the linear drift formula: offset + (MJD - mjd_ref) * drift
offset: RealConstant offset (seconds) in the TAI−UTC formula
drift: RealDrift rate (seconds per day) — this is the historical frequency offset effect
Trait Implementations§
Source§impl Clone for TaiUtcPre1972
impl Clone for TaiUtcPre1972
Source§fn clone(&self) -> TaiUtcPre1972
fn clone(&self) -> TaiUtcPre1972
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 moreSource§impl Debug for TaiUtcPre1972
impl Debug for TaiUtcPre1972
Source§impl PartialEq for TaiUtcPre1972
impl PartialEq for TaiUtcPre1972
Source§fn eq(&self, other: &TaiUtcPre1972) -> bool
fn eq(&self, other: &TaiUtcPre1972) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Copy for TaiUtcPre1972
impl StructuralPartialEq for TaiUtcPre1972
Auto Trait Implementations§
impl Freeze for TaiUtcPre1972
impl RefUnwindSafe for TaiUtcPre1972
impl Send for TaiUtcPre1972
impl Sync for TaiUtcPre1972
impl Unpin for TaiUtcPre1972
impl UnsafeUnpin for TaiUtcPre1972
impl UnwindSafe for TaiUtcPre1972
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