pub struct Tod<T: IersSystem>(pub T);Expand description
True of Date frame, parameterised by IERS convention.
Tuple Fields§
§0: TTrait Implementations§
impl<T: Copy + IersSystem> Copy for Tod<T>
impl<T: Eq + IersSystem> Eq for Tod<T>
Source§impl<T: IersSystem + Into<ReferenceSystem>> From<Tod<T>> for Frame
impl<T: IersSystem + Into<ReferenceSystem>> From<Tod<T>> for Frame
impl<T> QuasiInertial for Tod<T>
Source§impl<T> ReferenceFrame for Tod<T>
impl<T> ReferenceFrame for Tod<T>
Source§impl<T, P, C> RotateToIcrf<T, P> for Tod<C>where
T: ContinuousTimeScale + Copy,
C: IersSystem + Into<ReferenceSystem> + Copy,
P: RotationProvider<T> + TryOffset<T, Tt> + TryOffset<T, Tdb>,
impl<T, P, C> RotateToIcrf<T, P> for Tod<C>where
T: ContinuousTimeScale + Copy,
C: IersSystem + Into<ReferenceSystem> + Copy,
P: RotationProvider<T> + TryOffset<T, Tt> + TryOffset<T, Tdb>,
impl<T: PartialEq + IersSystem> StructuralPartialEq for Tod<T>
Auto Trait Implementations§
impl<T> Freeze for Tod<T>where
T: Freeze,
impl<T> RefUnwindSafe for Tod<T>where
T: RefUnwindSafe,
impl<T> Send for Tod<T>where
T: Send,
impl<T> Sync for Tod<T>where
T: Sync,
impl<T> Unpin for Tod<T>where
T: Unpin,
impl<T> UnsafeUnpin for Tod<T>where
T: UnsafeUnpin,
impl<T> UnwindSafe for Tod<T>where
T: UnwindSafe,
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> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> TryQuasiInertial for Twhere
T: QuasiInertial,
impl<T> TryQuasiInertial for Twhere
T: QuasiInertial,
Source§fn try_quasi_inertial(&self) -> Result<(), NonQuasiInertialFrameError>
fn try_quasi_inertial(&self) -> Result<(), NonQuasiInertialFrameError>
Returns
Ok(()) if the frame is quasi-inertial.Source§impl<T, O, Tg, P> TryRotation<O, Tg, T> for Pwhere
T: ContinuousTimeScale + Copy,
O: ReferenceFrame + RotateToIcrf<T, P, Error = RotationError>,
Tg: ReferenceFrame + RotateToIcrf<T, P, Error = RotationError>,
impl<T, O, Tg, P> TryRotation<O, Tg, T> for Pwhere
T: ContinuousTimeScale + Copy,
O: ReferenceFrame + RotateToIcrf<T, P, Error = RotationError>,
Tg: ReferenceFrame + RotateToIcrf<T, P, Error = RotationError>,
Source§type Error = RotationError
type Error = RotationError
The error type returned when the rotation cannot be computed.
Source§fn try_rotation(
&self,
origin: O,
target: Tg,
time: Time<T>,
) -> Result<Rotation, <P as TryRotation<O, Tg, T>>::Error>
fn try_rotation( &self, origin: O, target: Tg, time: Time<T>, ) -> Result<Rotation, <P as TryRotation<O, Tg, T>>::Error>
Computes the rotation from
origin to target at the given time.