pub struct ConversionChain {
pub glonass: Time<Glonass>,
pub gps: Time<Gps>,
pub utc: Time<Utc>,
pub tai: Time<Tai>,
}Expand description
Result of the end-to-end conversion BeiDou -> GPS -> GLONASS -> UTC -> TAI.
Fields§
§glonass: Time<Glonass>GLONASS time.
gps: Time<Gps>GPS time.
utc: Time<Utc>UTC time.
tai: Time<Tai>TAI time.
Trait Implementations§
Auto Trait Implementations§
impl Freeze for ConversionChain
impl RefUnwindSafe for ConversionChain
impl Send for ConversionChain
impl Sync for ConversionChain
impl Unpin for ConversionChain
impl UnsafeUnpin for ConversionChain
impl UnwindSafe for ConversionChain
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