pub enum TimeScale {
Invalid = -1,
UTC = 1,
TT = 2,
UT1 = 3,
TAI = 4,
GPS = 5,
TDB = 6,
}Expand description
Time Scales
§Enum Values:
UTC- Universal Time CoordinatedTT- Terrestrial TimeUT1- Universal Time 1TAI- International Atomic TimeGPS- Global Positioning SystemTDB- Barycentric Dynamical TimeInvalid- Invalid
Variants§
Invalid = -1
Invalid
UTC = 1
Universal Time Coordinate
TT = 2
Terrestrial Time
UT1 = 3
Universal Time 1
TAI = 4
International Atomic Time
GPS = 5
Global Positioning System
TDB = 6
Barycentric Dynamical Time
Trait Implementations§
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
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more