pub struct UT;Expand description
Universal Time — the civil time scale tied to Earth’s rotation.
Unlike JD, JDE, and TT (which all live on the uniform TT
axis), UT encodes a Julian Day on the UT axis. The conversion
to JD(TT) adds the epoch-dependent ΔT correction from Meeus (1998)
ch. 9, and the inverse uses a three-iteration fixed-point solver
with sub-microsecond accuracy.
Time::from_utc routes through this
scale automatically, so callers rarely need to construct Time<UT> directly.
Trait Implementations§
Source§impl PartialOrd for UT
impl PartialOrd for UT
impl Copy for UT
impl StructuralPartialEq for UT
Auto Trait Implementations§
impl Freeze for UT
impl RefUnwindSafe for UT
impl Send for UT
impl Sync for UT
impl Unpin for UT
impl UnsafeUnpin for UT
impl UnwindSafe for UT
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