#[repr(i32)]pub enum TimeScale {
Utc = 0,
Tai = 1,
Tcb = 2,
Tcg = 3,
Tdb = 4,
Tt = 5,
Ut1 = 6,
}Expand description
The time scale, mirroring asdf_time_scale_t.
Variants§
Utc = 0
Coordinated Universal Time, the default.
Tai = 1
International Atomic Time.
Tcb = 2
Barycentric Coordinate Time.
Tcg = 3
Geocentric Coordinate Time.
Tdb = 4
Barycentric Dynamical Time.
Tt = 5
Terrestrial Time.
Ut1 = 6
Universal Time.
Implementations§
Trait Implementations§
impl Copy for TimeScale
impl Eq for TimeScale
impl StructuralPartialEq for TimeScale
Auto Trait Implementations§
impl Freeze for TimeScale
impl RefUnwindSafe for TimeScale
impl Send for TimeScale
impl Sync for TimeScale
impl Unpin for TimeScale
impl UnsafeUnpin for TimeScale
impl UnwindSafe for TimeScale
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