pub struct DefaultRotationProvider;Expand description
Default rotation provider with no EOP data (zero corrections, zero polar motion).
Trait Implementations§
Source§impl Clone for DefaultRotationProvider
impl Clone for DefaultRotationProvider
Source§fn clone(&self) -> DefaultRotationProvider
fn clone(&self) -> DefaultRotationProvider
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for DefaultRotationProvider
impl Debug for DefaultRotationProvider
Source§impl OffsetProvider for DefaultRotationProvider
impl OffsetProvider for DefaultRotationProvider
Source§type Error = Infallible
type Error = Infallible
The error type for fallible offset computations (e.g. UT1).
Source§fn tai_to_ut1(&self, delta: TimeDelta) -> Result<TimeDelta, Self::Error>
fn tai_to_ut1(&self, delta: TimeDelta) -> Result<TimeDelta, Self::Error>
Returns the TAI→UT1 offset at the given delta.
Source§fn ut1_to_tai(&self, delta: TimeDelta) -> Result<TimeDelta, Self::Error>
fn ut1_to_tai(&self, delta: TimeDelta) -> Result<TimeDelta, Self::Error>
Returns the UT1→TAI offset at the given delta.
Source§fn tt_to_tcg(&self, delta: TimeDelta) -> TimeDelta
fn tt_to_tcg(&self, delta: TimeDelta) -> TimeDelta
Returns the TT→TCG offset at the given delta.
Source§fn tcg_to_tt(&self, delta: TimeDelta) -> TimeDelta
fn tcg_to_tt(&self, delta: TimeDelta) -> TimeDelta
Returns the TCG→TT offset at the given delta.
Source§fn tdb_to_tcb(&self, delta: TimeDelta) -> TimeDelta
fn tdb_to_tcb(&self, delta: TimeDelta) -> TimeDelta
Returns the TDB→TCB offset at the given delta.
Source§fn tcb_to_tdb(&self, delta: TimeDelta) -> TimeDelta
fn tcb_to_tdb(&self, delta: TimeDelta) -> TimeDelta
Returns the TCB→TDB offset at the given delta.
Source§impl<T> RotationProvider<T> for DefaultRotationProviderwhere
T: TimeScale,
impl<T> RotationProvider<T> for DefaultRotationProviderwhere
T: TimeScale,
Source§type EopError = Infallible
type EopError = Infallible
The error type for EOP lookups.
Source§fn corrections(
&self,
_time: Time<T>,
_sys: ReferenceSystem,
) -> Result<Corrections, Self::EopError>
fn corrections( &self, _time: Time<T>, _sys: ReferenceSystem, ) -> Result<Corrections, Self::EopError>
Returns nutation/precession corrections for the given reference system.
Source§fn pole_coords(&self, _time: Time<T>) -> Result<PoleCoords, Self::EopError>
fn pole_coords(&self, _time: Time<T>) -> Result<PoleCoords, Self::EopError>
Returns polar motion coordinates at the given time.
Source§fn icrf_to_iau<R>(
&self,
time: Time<T>,
frame: Iau<R>,
) -> Result<Rotation, RotationError>
fn icrf_to_iau<R>( &self, time: Time<T>, frame: Iau<R>, ) -> Result<Rotation, RotationError>
Rotation from ICRF to an IAU body-fixed frame.
Source§fn iau_to_icrf<R>(
&self,
time: Time<T>,
frame: Iau<R>,
) -> Result<Rotation, RotationError>
fn iau_to_icrf<R>( &self, time: Time<T>, frame: Iau<R>, ) -> Result<Rotation, RotationError>
Rotation from an IAU body-fixed frame to ICRF.
Source§fn icrf_to_itrf(&self, time: Time<T>) -> Result<Rotation, RotationError>
fn icrf_to_itrf(&self, time: Time<T>) -> Result<Rotation, RotationError>
Rotation from ICRF to ITRF (via CIO-based path).
Source§fn itrf_to_icrf(&self, time: Time<T>) -> Result<Rotation, RotationError>
fn itrf_to_icrf(&self, time: Time<T>) -> Result<Rotation, RotationError>
Rotation from ITRF to ICRF.
Source§fn icrf_to_j2000(&self) -> Rotation
fn icrf_to_j2000(&self) -> Rotation
Rotation from ICRF to J2000 (frame bias).
Source§fn j2000_to_icrf(&self) -> Rotation
fn j2000_to_icrf(&self) -> Rotation
Rotation from J2000 to ICRF (inverse frame bias).
Source§fn j2000_to_mod(
&self,
time: Time<T>,
sys: ReferenceSystem,
) -> Result<Rotation, RotationError>
fn j2000_to_mod( &self, time: Time<T>, sys: ReferenceSystem, ) -> Result<Rotation, RotationError>
Rotation from J2000 to Mean of Date.
Source§fn mod_to_j2000(
&self,
time: Time<T>,
sys: ReferenceSystem,
) -> Result<Rotation, RotationError>
fn mod_to_j2000( &self, time: Time<T>, sys: ReferenceSystem, ) -> Result<Rotation, RotationError>
Rotation from Mean of Date to J2000.
Source§fn icrf_to_mod(
&self,
time: Time<T>,
sys: ReferenceSystem,
) -> Result<Rotation, RotationError>
fn icrf_to_mod( &self, time: Time<T>, sys: ReferenceSystem, ) -> Result<Rotation, RotationError>
Rotation from ICRF to Mean of Date (bias + precession).
Source§fn mod_to_icrf(
&self,
time: Time<T>,
sys: ReferenceSystem,
) -> Result<Rotation, RotationError>
fn mod_to_icrf( &self, time: Time<T>, sys: ReferenceSystem, ) -> Result<Rotation, RotationError>
Rotation from Mean of Date to ICRF.
Source§fn mod_to_tod(
&self,
time: Time<T>,
sys: ReferenceSystem,
) -> Result<Rotation, RotationError>
fn mod_to_tod( &self, time: Time<T>, sys: ReferenceSystem, ) -> Result<Rotation, RotationError>
Rotation from Mean of Date to True of Date (nutation).
Source§fn tod_to_mod(
&self,
time: Time<T>,
sys: ReferenceSystem,
) -> Result<Rotation, RotationError>
fn tod_to_mod( &self, time: Time<T>, sys: ReferenceSystem, ) -> Result<Rotation, RotationError>
Rotation from True of Date to Mean of Date.
Source§fn tod_to_pef(
&self,
time: Time<T>,
sys: ReferenceSystem,
) -> Result<Rotation, RotationError>
fn tod_to_pef( &self, time: Time<T>, sys: ReferenceSystem, ) -> Result<Rotation, RotationError>
Rotation from True of Date to Pseudo-Earth Fixed (Earth rotation).
Source§fn pef_to_tod(
&self,
time: Time<T>,
sys: ReferenceSystem,
) -> Result<Rotation, RotationError>
fn pef_to_tod( &self, time: Time<T>, sys: ReferenceSystem, ) -> Result<Rotation, RotationError>
Rotation from Pseudo-Earth Fixed to True of Date.
Source§fn pef_to_itrf(
&self,
time: Time<T>,
sys: ReferenceSystem,
) -> Result<Rotation, RotationError>
fn pef_to_itrf( &self, time: Time<T>, sys: ReferenceSystem, ) -> Result<Rotation, RotationError>
Rotation from Pseudo-Earth Fixed to ITRF (polar motion).
Source§fn itrf_to_pef(
&self,
time: Time<T>,
sys: ReferenceSystem,
) -> Result<Rotation, RotationError>
fn itrf_to_pef( &self, time: Time<T>, sys: ReferenceSystem, ) -> Result<Rotation, RotationError>
Rotation from ITRF to Pseudo-Earth Fixed.
Source§fn tod_to_teme(&self, time: Time<T>) -> Result<Rotation, RotationError>
fn tod_to_teme(&self, time: Time<T>) -> Result<Rotation, RotationError>
Rotation from True of Date to TEME.
Source§fn teme_to_tod(&self, time: Time<T>) -> Result<Rotation, RotationError>
fn teme_to_tod(&self, time: Time<T>) -> Result<Rotation, RotationError>
Rotation from TEME to True of Date.
Source§fn icrf_to_cirf(&self, time: Time<T>) -> Result<Rotation, RotationError>
fn icrf_to_cirf(&self, time: Time<T>) -> Result<Rotation, RotationError>
Rotation from ICRF to CIRF (CIP + CIO).
Source§fn cirf_to_icrf(&self, time: Time<T>) -> Result<Rotation, RotationError>
fn cirf_to_icrf(&self, time: Time<T>) -> Result<Rotation, RotationError>
Rotation from CIRF to ICRF.
Source§fn cirf_to_tirf(&self, time: Time<T>) -> Result<Rotation, RotationError>
fn cirf_to_tirf(&self, time: Time<T>) -> Result<Rotation, RotationError>
Rotation from CIRF to TIRF (Earth rotation angle).
Source§fn tirf_to_cirf(&self, time: Time<T>) -> Result<Rotation, RotationError>
fn tirf_to_cirf(&self, time: Time<T>) -> Result<Rotation, RotationError>
Rotation from TIRF to CIRF.
Source§fn tirf_to_itrf(&self, time: Time<T>) -> Result<Rotation, RotationError>
fn tirf_to_itrf(&self, time: Time<T>) -> Result<Rotation, RotationError>
Rotation from TIRF to ITRF (polar motion).
impl Copy for DefaultRotationProvider
Auto Trait Implementations§
impl Freeze for DefaultRotationProvider
impl RefUnwindSafe for DefaultRotationProvider
impl Send for DefaultRotationProvider
impl Sync for DefaultRotationProvider
impl Unpin for DefaultRotationProvider
impl UnsafeUnpin for DefaultRotationProvider
impl UnwindSafe for DefaultRotationProvider
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> 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 moreSource§impl<T> TryOffset<DynTimeScale, DynTimeScale> for Twhere
T: OffsetProvider,
impl<T> TryOffset<DynTimeScale, DynTimeScale> for Twhere
T: OffsetProvider,
Source§type Error = <T as OffsetProvider>::Error
type Error = <T as OffsetProvider>::Error
The error type returned when the offset cannot be computed.
Source§fn try_offset(
&self,
origin: DynTimeScale,
target: DynTimeScale,
delta: TimeDelta,
) -> Result<TimeDelta, <T as TryOffset<DynTimeScale, DynTimeScale>>::Error>
fn try_offset( &self, origin: DynTimeScale, target: DynTimeScale, delta: TimeDelta, ) -> Result<TimeDelta, <T as TryOffset<DynTimeScale, DynTimeScale>>::Error>
Computes the offset from
origin to target at the given delta since J2000.Source§impl<T> TryOffset<DynTimeScale, Tai> for Twhere
T: OffsetProvider,
impl<T> TryOffset<DynTimeScale, Tai> for Twhere
T: OffsetProvider,
Source§type Error = <T as OffsetProvider>::Error
type Error = <T as OffsetProvider>::Error
The error type returned when the offset cannot be computed.
Source§fn try_offset(
&self,
origin: DynTimeScale,
target: Tai,
delta: TimeDelta,
) -> Result<TimeDelta, <T as TryOffset<DynTimeScale, Tai>>::Error>
fn try_offset( &self, origin: DynTimeScale, target: Tai, delta: TimeDelta, ) -> Result<TimeDelta, <T as TryOffset<DynTimeScale, Tai>>::Error>
Computes the offset from
origin to target at the given delta since J2000.Source§impl<T> TryOffset<DynTimeScale, Tcb> for Twhere
T: OffsetProvider,
impl<T> TryOffset<DynTimeScale, Tcb> for Twhere
T: OffsetProvider,
Source§type Error = <T as OffsetProvider>::Error
type Error = <T as OffsetProvider>::Error
The error type returned when the offset cannot be computed.
Source§fn try_offset(
&self,
origin: DynTimeScale,
target: Tcb,
delta: TimeDelta,
) -> Result<TimeDelta, <T as TryOffset<DynTimeScale, Tcb>>::Error>
fn try_offset( &self, origin: DynTimeScale, target: Tcb, delta: TimeDelta, ) -> Result<TimeDelta, <T as TryOffset<DynTimeScale, Tcb>>::Error>
Computes the offset from
origin to target at the given delta since J2000.Source§impl<T> TryOffset<DynTimeScale, Tcg> for Twhere
T: OffsetProvider,
impl<T> TryOffset<DynTimeScale, Tcg> for Twhere
T: OffsetProvider,
Source§type Error = <T as OffsetProvider>::Error
type Error = <T as OffsetProvider>::Error
The error type returned when the offset cannot be computed.
Source§fn try_offset(
&self,
origin: DynTimeScale,
target: Tcg,
delta: TimeDelta,
) -> Result<TimeDelta, <T as TryOffset<DynTimeScale, Tcg>>::Error>
fn try_offset( &self, origin: DynTimeScale, target: Tcg, delta: TimeDelta, ) -> Result<TimeDelta, <T as TryOffset<DynTimeScale, Tcg>>::Error>
Computes the offset from
origin to target at the given delta since J2000.Source§impl<T> TryOffset<DynTimeScale, Tdb> for Twhere
T: OffsetProvider,
impl<T> TryOffset<DynTimeScale, Tdb> for Twhere
T: OffsetProvider,
Source§type Error = <T as OffsetProvider>::Error
type Error = <T as OffsetProvider>::Error
The error type returned when the offset cannot be computed.
Source§fn try_offset(
&self,
origin: DynTimeScale,
target: Tdb,
delta: TimeDelta,
) -> Result<TimeDelta, <T as TryOffset<DynTimeScale, Tdb>>::Error>
fn try_offset( &self, origin: DynTimeScale, target: Tdb, delta: TimeDelta, ) -> Result<TimeDelta, <T as TryOffset<DynTimeScale, Tdb>>::Error>
Computes the offset from
origin to target at the given delta since J2000.Source§impl<T> TryOffset<DynTimeScale, Tt> for Twhere
T: OffsetProvider,
impl<T> TryOffset<DynTimeScale, Tt> for Twhere
T: OffsetProvider,
Source§type Error = <T as OffsetProvider>::Error
type Error = <T as OffsetProvider>::Error
The error type returned when the offset cannot be computed.
Source§fn try_offset(
&self,
origin: DynTimeScale,
target: Tt,
delta: TimeDelta,
) -> Result<TimeDelta, <T as TryOffset<DynTimeScale, Tt>>::Error>
fn try_offset( &self, origin: DynTimeScale, target: Tt, delta: TimeDelta, ) -> Result<TimeDelta, <T as TryOffset<DynTimeScale, Tt>>::Error>
Computes the offset from
origin to target at the given delta since J2000.Source§impl<T> TryOffset<DynTimeScale, Ut1> for Twhere
T: OffsetProvider,
impl<T> TryOffset<DynTimeScale, Ut1> for Twhere
T: OffsetProvider,
Source§type Error = <T as OffsetProvider>::Error
type Error = <T as OffsetProvider>::Error
The error type returned when the offset cannot be computed.
Source§fn try_offset(
&self,
origin: DynTimeScale,
target: Ut1,
delta: TimeDelta,
) -> Result<TimeDelta, <T as TryOffset<DynTimeScale, Ut1>>::Error>
fn try_offset( &self, origin: DynTimeScale, target: Ut1, delta: TimeDelta, ) -> Result<TimeDelta, <T as TryOffset<DynTimeScale, Ut1>>::Error>
Computes the offset from
origin to target at the given delta since J2000.Source§impl<T> TryOffset<Tai, DynTimeScale> for Twhere
T: OffsetProvider,
impl<T> TryOffset<Tai, DynTimeScale> for Twhere
T: OffsetProvider,
Source§type Error = <T as OffsetProvider>::Error
type Error = <T as OffsetProvider>::Error
The error type returned when the offset cannot be computed.
Source§fn try_offset(
&self,
origin: Tai,
target: DynTimeScale,
delta: TimeDelta,
) -> Result<TimeDelta, <T as TryOffset<Tai, DynTimeScale>>::Error>
fn try_offset( &self, origin: Tai, target: DynTimeScale, delta: TimeDelta, ) -> Result<TimeDelta, <T as TryOffset<Tai, DynTimeScale>>::Error>
Computes the offset from
origin to target at the given delta since J2000.Source§impl<T> TryOffset<Tai, Ut1> for Twhere
T: OffsetProvider,
impl<T> TryOffset<Tai, Ut1> for Twhere
T: OffsetProvider,
Source§type Error = <T as OffsetProvider>::Error
type Error = <T as OffsetProvider>::Error
The error type returned when the offset cannot be computed.
Source§impl<T> TryOffset<Tcb, DynTimeScale> for Twhere
T: OffsetProvider,
impl<T> TryOffset<Tcb, DynTimeScale> for Twhere
T: OffsetProvider,
Source§type Error = <T as OffsetProvider>::Error
type Error = <T as OffsetProvider>::Error
The error type returned when the offset cannot be computed.
Source§fn try_offset(
&self,
origin: Tcb,
target: DynTimeScale,
delta: TimeDelta,
) -> Result<TimeDelta, <T as TryOffset<Tcb, DynTimeScale>>::Error>
fn try_offset( &self, origin: Tcb, target: DynTimeScale, delta: TimeDelta, ) -> Result<TimeDelta, <T as TryOffset<Tcb, DynTimeScale>>::Error>
Computes the offset from
origin to target at the given delta since J2000.Source§impl<T> TryOffset<Tcb, Ut1> for Twhere
T: OffsetProvider,
impl<T> TryOffset<Tcb, Ut1> for Twhere
T: OffsetProvider,
Source§type Error = <T as OffsetProvider>::Error
type Error = <T as OffsetProvider>::Error
The error type returned when the offset cannot be computed.
Source§impl<T> TryOffset<Tcg, DynTimeScale> for Twhere
T: OffsetProvider,
impl<T> TryOffset<Tcg, DynTimeScale> for Twhere
T: OffsetProvider,
Source§type Error = <T as OffsetProvider>::Error
type Error = <T as OffsetProvider>::Error
The error type returned when the offset cannot be computed.
Source§fn try_offset(
&self,
origin: Tcg,
target: DynTimeScale,
delta: TimeDelta,
) -> Result<TimeDelta, <T as TryOffset<Tcg, DynTimeScale>>::Error>
fn try_offset( &self, origin: Tcg, target: DynTimeScale, delta: TimeDelta, ) -> Result<TimeDelta, <T as TryOffset<Tcg, DynTimeScale>>::Error>
Computes the offset from
origin to target at the given delta since J2000.Source§impl<T> TryOffset<Tcg, Ut1> for Twhere
T: OffsetProvider,
impl<T> TryOffset<Tcg, Ut1> for Twhere
T: OffsetProvider,
Source§type Error = <T as OffsetProvider>::Error
type Error = <T as OffsetProvider>::Error
The error type returned when the offset cannot be computed.
Source§impl<T> TryOffset<Tdb, DynTimeScale> for Twhere
T: OffsetProvider,
impl<T> TryOffset<Tdb, DynTimeScale> for Twhere
T: OffsetProvider,
Source§type Error = <T as OffsetProvider>::Error
type Error = <T as OffsetProvider>::Error
The error type returned when the offset cannot be computed.
Source§fn try_offset(
&self,
origin: Tdb,
target: DynTimeScale,
delta: TimeDelta,
) -> Result<TimeDelta, <T as TryOffset<Tdb, DynTimeScale>>::Error>
fn try_offset( &self, origin: Tdb, target: DynTimeScale, delta: TimeDelta, ) -> Result<TimeDelta, <T as TryOffset<Tdb, DynTimeScale>>::Error>
Computes the offset from
origin to target at the given delta since J2000.Source§impl<T> TryOffset<Tdb, Ut1> for Twhere
T: OffsetProvider,
impl<T> TryOffset<Tdb, Ut1> for Twhere
T: OffsetProvider,
Source§type Error = <T as OffsetProvider>::Error
type Error = <T as OffsetProvider>::Error
The error type returned when the offset cannot be computed.
Source§impl<T> TryOffset<Tt, DynTimeScale> for Twhere
T: OffsetProvider,
impl<T> TryOffset<Tt, DynTimeScale> for Twhere
T: OffsetProvider,
Source§type Error = <T as OffsetProvider>::Error
type Error = <T as OffsetProvider>::Error
The error type returned when the offset cannot be computed.
Source§fn try_offset(
&self,
origin: Tt,
target: DynTimeScale,
delta: TimeDelta,
) -> Result<TimeDelta, <T as TryOffset<Tt, DynTimeScale>>::Error>
fn try_offset( &self, origin: Tt, target: DynTimeScale, delta: TimeDelta, ) -> Result<TimeDelta, <T as TryOffset<Tt, DynTimeScale>>::Error>
Computes the offset from
origin to target at the given delta since J2000.Source§impl<T> TryOffset<Tt, Ut1> for Twhere
T: OffsetProvider,
impl<T> TryOffset<Tt, Ut1> for Twhere
T: OffsetProvider,
Source§type Error = <T as OffsetProvider>::Error
type Error = <T as OffsetProvider>::Error
The error type returned when the offset cannot be computed.
Source§impl<T> TryOffset<Ut1, DynTimeScale> for Twhere
T: OffsetProvider,
impl<T> TryOffset<Ut1, DynTimeScale> for Twhere
T: OffsetProvider,
Source§type Error = <T as OffsetProvider>::Error
type Error = <T as OffsetProvider>::Error
The error type returned when the offset cannot be computed.
Source§fn try_offset(
&self,
origin: Ut1,
target: DynTimeScale,
delta: TimeDelta,
) -> Result<TimeDelta, <T as TryOffset<Ut1, DynTimeScale>>::Error>
fn try_offset( &self, origin: Ut1, target: DynTimeScale, delta: TimeDelta, ) -> Result<TimeDelta, <T as TryOffset<Ut1, DynTimeScale>>::Error>
Computes the offset from
origin to target at the given delta since J2000.Source§impl<T> TryOffset<Ut1, Tai> for Twhere
T: OffsetProvider,
impl<T> TryOffset<Ut1, Tai> for Twhere
T: OffsetProvider,
Source§type Error = <T as OffsetProvider>::Error
type Error = <T as OffsetProvider>::Error
The error type returned when the offset cannot be computed.
Source§impl<T> TryOffset<Ut1, Tcb> for Twhere
T: OffsetProvider,
impl<T> TryOffset<Ut1, Tcb> for Twhere
T: OffsetProvider,
Source§type Error = <T as OffsetProvider>::Error
type Error = <T as OffsetProvider>::Error
The error type returned when the offset cannot be computed.
Source§impl<T> TryOffset<Ut1, Tcg> for Twhere
T: OffsetProvider,
impl<T> TryOffset<Ut1, Tcg> for Twhere
T: OffsetProvider,
Source§type Error = <T as OffsetProvider>::Error
type Error = <T as OffsetProvider>::Error
The error type returned when the offset cannot be computed.
Source§impl<T> TryOffset<Ut1, Tdb> for Twhere
T: OffsetProvider,
impl<T> TryOffset<Ut1, Tdb> for Twhere
T: OffsetProvider,
Source§type Error = <T as OffsetProvider>::Error
type Error = <T as OffsetProvider>::Error
The error type returned when the offset cannot be computed.
Source§impl<T> TryOffset<Ut1, Tt> for Twhere
T: OffsetProvider,
impl<T> TryOffset<Ut1, Tt> for Twhere
T: OffsetProvider,
Source§type Error = <T as OffsetProvider>::Error
type Error = <T as OffsetProvider>::Error
The error type returned when the offset cannot be computed.
Source§impl<T, U> TryRotation<Cirf, DynFrame, T> for U
impl<T, U> TryRotation<Cirf, DynFrame, T> for U
Source§type Error = DynRotationError
type Error = DynRotationError
The error type returned when the rotation cannot be computed.
Source§impl<T, U> TryRotation<Cirf, Iau<DynOrigin>, T> for U
impl<T, U> TryRotation<Cirf, Iau<DynOrigin>, T> for U
Source§type Error = RotationError
type Error = RotationError
The error type returned when the rotation cannot be computed.
Source§impl<T, U> TryRotation<Cirf, Icrf, T> for U
impl<T, U> TryRotation<Cirf, Icrf, T> for U
Source§impl<T, U> TryRotation<Cirf, Itrf, T> for U
impl<T, U> TryRotation<Cirf, Itrf, T> for U
Source§impl<T, U> TryRotation<Cirf, J2000, T> for U
impl<T, U> TryRotation<Cirf, J2000, T> for U
Source§impl<T, U> TryRotation<Cirf, Mod<Iers1996>, T> for U
impl<T, U> TryRotation<Cirf, Mod<Iers1996>, T> for U
Source§type Error = RotationError
type Error = RotationError
The error type returned when the rotation cannot be computed.
Source§impl<T, U> TryRotation<Cirf, Mod<Iers2003>, T> for U
impl<T, U> TryRotation<Cirf, Mod<Iers2003>, T> for U
Source§type Error = RotationError
type Error = RotationError
The error type returned when the rotation cannot be computed.
Source§impl<T, U> TryRotation<Cirf, Mod<Iers2010>, T> for U
impl<T, U> TryRotation<Cirf, Mod<Iers2010>, T> for U
Source§type Error = RotationError
type Error = RotationError
The error type returned when the rotation cannot be computed.
Source§impl<T, U> TryRotation<Cirf, Pef<Iers1996>, T> for U
impl<T, U> TryRotation<Cirf, Pef<Iers1996>, T> for U
Source§type Error = RotationError
type Error = RotationError
The error type returned when the rotation cannot be computed.
Source§impl<T, U> TryRotation<Cirf, Pef<Iers2003>, T> for U
impl<T, U> TryRotation<Cirf, Pef<Iers2003>, T> for U
Source§type Error = RotationError
type Error = RotationError
The error type returned when the rotation cannot be computed.
Source§impl<T, U> TryRotation<Cirf, Pef<Iers2010>, T> for U
impl<T, U> TryRotation<Cirf, Pef<Iers2010>, T> for U
Source§type Error = RotationError
type Error = RotationError
The error type returned when the rotation cannot be computed.
Source§impl<T, U> TryRotation<Cirf, Teme, T> for U
impl<T, U> TryRotation<Cirf, Teme, T> for U
Source§impl<T, U> TryRotation<Cirf, Tirf, T> for U
impl<T, U> TryRotation<Cirf, Tirf, T> for U
Source§impl<T, U> TryRotation<Cirf, Tod<Iers1996>, T> for U
impl<T, U> TryRotation<Cirf, Tod<Iers1996>, T> for U
Source§type Error = RotationError
type Error = RotationError
The error type returned when the rotation cannot be computed.
Source§impl<T, U> TryRotation<Cirf, Tod<Iers2003>, T> for U
impl<T, U> TryRotation<Cirf, Tod<Iers2003>, T> for U
Source§type Error = RotationError
type Error = RotationError
The error type returned when the rotation cannot be computed.
Source§impl<T, U> TryRotation<Cirf, Tod<Iers2010>, T> for U
impl<T, U> TryRotation<Cirf, Tod<Iers2010>, T> for U
Source§type Error = RotationError
type Error = RotationError
The error type returned when the rotation cannot be computed.
Source§impl<T, U> TryRotation<DynFrame, Cirf, T> for U
impl<T, U> TryRotation<DynFrame, Cirf, T> for U
Source§type Error = DynRotationError
type Error = DynRotationError
The error type returned when the rotation cannot be computed.
Source§impl<T, U> TryRotation<DynFrame, DynFrame, T> for U
impl<T, U> TryRotation<DynFrame, DynFrame, T> for U
Source§type Error = DynRotationError
type Error = DynRotationError
The error type returned when the rotation cannot be computed.
Source§impl<T, U> TryRotation<DynFrame, Iau<DynOrigin>, T> for U
impl<T, U> TryRotation<DynFrame, Iau<DynOrigin>, T> for U
Source§type Error = DynRotationError
type Error = DynRotationError
The error type returned when the rotation cannot be computed.
Source§impl<T, U> TryRotation<DynFrame, Icrf, T> for U
impl<T, U> TryRotation<DynFrame, Icrf, T> for U
Source§type Error = DynRotationError
type Error = DynRotationError
The error type returned when the rotation cannot be computed.
Source§impl<T, U> TryRotation<DynFrame, Itrf, T> for U
impl<T, U> TryRotation<DynFrame, Itrf, T> for U
Source§type Error = DynRotationError
type Error = DynRotationError
The error type returned when the rotation cannot be computed.
Source§impl<T, U> TryRotation<DynFrame, J2000, T> for U
impl<T, U> TryRotation<DynFrame, J2000, T> for U
Source§type Error = DynRotationError
type Error = DynRotationError
The error type returned when the rotation cannot be computed.
Source§impl<T, U> TryRotation<DynFrame, Mod<Iers1996>, T> for U
impl<T, U> TryRotation<DynFrame, Mod<Iers1996>, T> for U
Source§type Error = DynRotationError
type Error = DynRotationError
The error type returned when the rotation cannot be computed.
Source§impl<T, U> TryRotation<DynFrame, Mod<Iers2003>, T> for U
impl<T, U> TryRotation<DynFrame, Mod<Iers2003>, T> for U
Source§type Error = DynRotationError
type Error = DynRotationError
The error type returned when the rotation cannot be computed.
Source§impl<T, U> TryRotation<DynFrame, Mod<Iers2010>, T> for U
impl<T, U> TryRotation<DynFrame, Mod<Iers2010>, T> for U
Source§type Error = DynRotationError
type Error = DynRotationError
The error type returned when the rotation cannot be computed.
Source§impl<T, U> TryRotation<DynFrame, Pef<Iers1996>, T> for U
impl<T, U> TryRotation<DynFrame, Pef<Iers1996>, T> for U
Source§type Error = DynRotationError
type Error = DynRotationError
The error type returned when the rotation cannot be computed.
Source§impl<T, U> TryRotation<DynFrame, Pef<Iers2003>, T> for U
impl<T, U> TryRotation<DynFrame, Pef<Iers2003>, T> for U
Source§type Error = DynRotationError
type Error = DynRotationError
The error type returned when the rotation cannot be computed.
Source§impl<T, U> TryRotation<DynFrame, Pef<Iers2010>, T> for U
impl<T, U> TryRotation<DynFrame, Pef<Iers2010>, T> for U
Source§type Error = DynRotationError
type Error = DynRotationError
The error type returned when the rotation cannot be computed.
Source§impl<T, U> TryRotation<DynFrame, Teme, T> for U
impl<T, U> TryRotation<DynFrame, Teme, T> for U
Source§type Error = DynRotationError
type Error = DynRotationError
The error type returned when the rotation cannot be computed.
Source§impl<T, U> TryRotation<DynFrame, Tirf, T> for U
impl<T, U> TryRotation<DynFrame, Tirf, T> for U
Source§type Error = DynRotationError
type Error = DynRotationError
The error type returned when the rotation cannot be computed.
Source§impl<T, U> TryRotation<DynFrame, Tod<Iers1996>, T> for U
impl<T, U> TryRotation<DynFrame, Tod<Iers1996>, T> for U
Source§type Error = DynRotationError
type Error = DynRotationError
The error type returned when the rotation cannot be computed.
Source§impl<T, U> TryRotation<DynFrame, Tod<Iers2003>, T> for U
impl<T, U> TryRotation<DynFrame, Tod<Iers2003>, T> for U
Source§type Error = DynRotationError
type Error = DynRotationError
The error type returned when the rotation cannot be computed.
Source§impl<T, U> TryRotation<DynFrame, Tod<Iers2010>, T> for U
impl<T, U> TryRotation<DynFrame, Tod<Iers2010>, T> for U
Source§type Error = DynRotationError
type Error = DynRotationError
The error type returned when the rotation cannot be computed.
Source§impl<T, U> TryRotation<Iau<DynOrigin>, Cirf, T> for U
impl<T, U> TryRotation<Iau<DynOrigin>, Cirf, T> for U
Source§type Error = RotationError
type Error = RotationError
The error type returned when the rotation cannot be computed.
Source§impl<T, U> TryRotation<Iau<DynOrigin>, DynFrame, T> for U
impl<T, U> TryRotation<Iau<DynOrigin>, DynFrame, T> for U
Source§type Error = DynRotationError
type Error = DynRotationError
The error type returned when the rotation cannot be computed.
Source§impl<T, U> TryRotation<Iau<DynOrigin>, Itrf, T> for U
impl<T, U> TryRotation<Iau<DynOrigin>, Itrf, T> for U
Source§type Error = RotationError
type Error = RotationError
The error type returned when the rotation cannot be computed.
Source§impl<T, U> TryRotation<Iau<DynOrigin>, J2000, T> for U
impl<T, U> TryRotation<Iau<DynOrigin>, J2000, T> for U
Source§type Error = RotationError
type Error = RotationError
The error type returned when the rotation cannot be computed.
Source§impl<T, U> TryRotation<Iau<DynOrigin>, Mod<Iers1996>, T> for U
impl<T, U> TryRotation<Iau<DynOrigin>, Mod<Iers1996>, T> for U
Source§type Error = RotationError
type Error = RotationError
The error type returned when the rotation cannot be computed.
Source§impl<T, U> TryRotation<Iau<DynOrigin>, Mod<Iers2003>, T> for U
impl<T, U> TryRotation<Iau<DynOrigin>, Mod<Iers2003>, T> for U
Source§type Error = RotationError
type Error = RotationError
The error type returned when the rotation cannot be computed.
Source§impl<T, U> TryRotation<Iau<DynOrigin>, Mod<Iers2010>, T> for U
impl<T, U> TryRotation<Iau<DynOrigin>, Mod<Iers2010>, T> for U
Source§type Error = RotationError
type Error = RotationError
The error type returned when the rotation cannot be computed.
Source§impl<T, U> TryRotation<Iau<DynOrigin>, Pef<Iers1996>, T> for U
impl<T, U> TryRotation<Iau<DynOrigin>, Pef<Iers1996>, T> for U
Source§type Error = RotationError
type Error = RotationError
The error type returned when the rotation cannot be computed.
Source§impl<T, U> TryRotation<Iau<DynOrigin>, Pef<Iers2003>, T> for U
impl<T, U> TryRotation<Iau<DynOrigin>, Pef<Iers2003>, T> for U
Source§type Error = RotationError
type Error = RotationError
The error type returned when the rotation cannot be computed.
Source§impl<T, U> TryRotation<Iau<DynOrigin>, Pef<Iers2010>, T> for U
impl<T, U> TryRotation<Iau<DynOrigin>, Pef<Iers2010>, T> for U
Source§type Error = RotationError
type Error = RotationError
The error type returned when the rotation cannot be computed.
Source§impl<T, U> TryRotation<Iau<DynOrigin>, Teme, T> for U
impl<T, U> TryRotation<Iau<DynOrigin>, Teme, T> for U
Source§type Error = RotationError
type Error = RotationError
The error type returned when the rotation cannot be computed.
Source§impl<T, U> TryRotation<Iau<DynOrigin>, Tirf, T> for U
impl<T, U> TryRotation<Iau<DynOrigin>, Tirf, T> for U
Source§type Error = RotationError
type Error = RotationError
The error type returned when the rotation cannot be computed.
Source§impl<T, U> TryRotation<Iau<DynOrigin>, Tod<Iers1996>, T> for U
impl<T, U> TryRotation<Iau<DynOrigin>, Tod<Iers1996>, T> for U
Source§type Error = RotationError
type Error = RotationError
The error type returned when the rotation cannot be computed.
Source§impl<T, U> TryRotation<Iau<DynOrigin>, Tod<Iers2003>, T> for U
impl<T, U> TryRotation<Iau<DynOrigin>, Tod<Iers2003>, T> for U
Source§type Error = RotationError
type Error = RotationError
The error type returned when the rotation cannot be computed.
Source§impl<T, U> TryRotation<Iau<DynOrigin>, Tod<Iers2010>, T> for U
impl<T, U> TryRotation<Iau<DynOrigin>, Tod<Iers2010>, T> for U
Source§type Error = RotationError
type Error = RotationError
The error type returned when the rotation cannot be computed.
Source§impl<T, R, U> TryRotation<Iau<R>, Icrf, T> for Uwhere
T: TimeScale + Copy,
R: TryRotationalElements + Copy,
U: RotationProvider<T> + TryOffset<T, Tdb>,
impl<T, R, U> TryRotation<Iau<R>, Icrf, T> for Uwhere
T: TimeScale + Copy,
R: TryRotationalElements + Copy,
U: RotationProvider<T> + TryOffset<T, Tdb>,
Source§impl<T, U> TryRotation<Icrf, Cirf, T> for U
impl<T, U> TryRotation<Icrf, Cirf, T> for U
Source§impl<T, U> TryRotation<Icrf, DynFrame, T> for U
impl<T, U> TryRotation<Icrf, DynFrame, T> for U
Source§type Error = DynRotationError
type Error = DynRotationError
The error type returned when the rotation cannot be computed.
Source§impl<T, R, U> TryRotation<Icrf, Iau<R>, T> for Uwhere
T: TimeScale + Copy,
R: TryRotationalElements + Copy,
U: RotationProvider<T> + TryOffset<T, Tdb>,
impl<T, R, U> TryRotation<Icrf, Iau<R>, T> for Uwhere
T: TimeScale + Copy,
R: TryRotationalElements + Copy,
U: RotationProvider<T> + TryOffset<T, Tdb>,
Source§impl<T, U> TryRotation<Icrf, Itrf, T> for U
impl<T, U> TryRotation<Icrf, Itrf, T> for U
Source§impl<T, U> TryRotation<Icrf, J2000, T> for U
impl<T, U> TryRotation<Icrf, J2000, T> for U
Source§impl<T, U> TryRotation<Icrf, Mod<Iers1996>, T> for U
impl<T, U> TryRotation<Icrf, Mod<Iers1996>, T> for U
Source§type Error = RotationError
type Error = RotationError
The error type returned when the rotation cannot be computed.
Source§impl<T, U> TryRotation<Icrf, Mod<Iers2003>, T> for U
impl<T, U> TryRotation<Icrf, Mod<Iers2003>, T> for U
Source§type Error = RotationError
type Error = RotationError
The error type returned when the rotation cannot be computed.
Source§impl<T, U> TryRotation<Icrf, Mod<Iers2010>, T> for U
impl<T, U> TryRotation<Icrf, Mod<Iers2010>, T> for U
Source§type Error = RotationError
type Error = RotationError
The error type returned when the rotation cannot be computed.
Source§impl<T, U> TryRotation<Icrf, Pef<Iers1996>, T> for U
impl<T, U> TryRotation<Icrf, Pef<Iers1996>, T> for U
Source§type Error = RotationError
type Error = RotationError
The error type returned when the rotation cannot be computed.
Source§impl<T, U> TryRotation<Icrf, Pef<Iers2003>, T> for U
impl<T, U> TryRotation<Icrf, Pef<Iers2003>, T> for U
Source§type Error = RotationError
type Error = RotationError
The error type returned when the rotation cannot be computed.
Source§impl<T, U> TryRotation<Icrf, Pef<Iers2010>, T> for U
impl<T, U> TryRotation<Icrf, Pef<Iers2010>, T> for U
Source§type Error = RotationError
type Error = RotationError
The error type returned when the rotation cannot be computed.
Source§impl<T, U> TryRotation<Icrf, Teme, T> for U
impl<T, U> TryRotation<Icrf, Teme, T> for U
Source§impl<T, U> TryRotation<Icrf, Tirf, T> for U
impl<T, U> TryRotation<Icrf, Tirf, T> for U
Source§impl<T, U> TryRotation<Icrf, Tod<Iers1996>, T> for U
impl<T, U> TryRotation<Icrf, Tod<Iers1996>, T> for U
Source§type Error = RotationError
type Error = RotationError
The error type returned when the rotation cannot be computed.
Source§impl<T, U> TryRotation<Icrf, Tod<Iers2003>, T> for U
impl<T, U> TryRotation<Icrf, Tod<Iers2003>, T> for U
Source§type Error = RotationError
type Error = RotationError
The error type returned when the rotation cannot be computed.
Source§impl<T, U> TryRotation<Icrf, Tod<Iers2010>, T> for U
impl<T, U> TryRotation<Icrf, Tod<Iers2010>, T> for U
Source§type Error = RotationError
type Error = RotationError
The error type returned when the rotation cannot be computed.
Source§impl<T, U> TryRotation<Itrf, Cirf, T> for U
impl<T, U> TryRotation<Itrf, Cirf, T> for U
Source§impl<T, U> TryRotation<Itrf, DynFrame, T> for U
impl<T, U> TryRotation<Itrf, DynFrame, T> for U
Source§type Error = DynRotationError
type Error = DynRotationError
The error type returned when the rotation cannot be computed.
Source§impl<T, U> TryRotation<Itrf, Iau<DynOrigin>, T> for U
impl<T, U> TryRotation<Itrf, Iau<DynOrigin>, T> for U
Source§type Error = RotationError
type Error = RotationError
The error type returned when the rotation cannot be computed.
Source§impl<T, U> TryRotation<Itrf, Icrf, T> for U
impl<T, U> TryRotation<Itrf, Icrf, T> for U
Source§impl<T, U> TryRotation<Itrf, J2000, T> for U
impl<T, U> TryRotation<Itrf, J2000, T> for U
Source§impl<T, U> TryRotation<Itrf, Mod<Iers1996>, T> for U
impl<T, U> TryRotation<Itrf, Mod<Iers1996>, T> for U
Source§type Error = RotationError
type Error = RotationError
The error type returned when the rotation cannot be computed.
Source§impl<T, U> TryRotation<Itrf, Mod<Iers2003>, T> for U
impl<T, U> TryRotation<Itrf, Mod<Iers2003>, T> for U
Source§type Error = RotationError
type Error = RotationError
The error type returned when the rotation cannot be computed.
Source§impl<T, U> TryRotation<Itrf, Mod<Iers2010>, T> for U
impl<T, U> TryRotation<Itrf, Mod<Iers2010>, T> for U
Source§type Error = RotationError
type Error = RotationError
The error type returned when the rotation cannot be computed.
Source§impl<T, U> TryRotation<Itrf, Pef<Iers1996>, T> for U
impl<T, U> TryRotation<Itrf, Pef<Iers1996>, T> for U
Source§type Error = RotationError
type Error = RotationError
The error type returned when the rotation cannot be computed.
Source§impl<T, U> TryRotation<Itrf, Pef<Iers2003>, T> for U
impl<T, U> TryRotation<Itrf, Pef<Iers2003>, T> for U
Source§type Error = RotationError
type Error = RotationError
The error type returned when the rotation cannot be computed.
Source§impl<T, U> TryRotation<Itrf, Pef<Iers2010>, T> for U
impl<T, U> TryRotation<Itrf, Pef<Iers2010>, T> for U
Source§type Error = RotationError
type Error = RotationError
The error type returned when the rotation cannot be computed.
Source§impl<T, U> TryRotation<Itrf, Teme, T> for U
impl<T, U> TryRotation<Itrf, Teme, T> for U
Source§impl<T, U> TryRotation<Itrf, Tirf, T> for U
impl<T, U> TryRotation<Itrf, Tirf, T> for U
Source§impl<T, U> TryRotation<Itrf, Tod<Iers1996>, T> for U
impl<T, U> TryRotation<Itrf, Tod<Iers1996>, T> for U
Source§type Error = RotationError
type Error = RotationError
The error type returned when the rotation cannot be computed.
Source§impl<T, U> TryRotation<Itrf, Tod<Iers2003>, T> for U
impl<T, U> TryRotation<Itrf, Tod<Iers2003>, T> for U
Source§type Error = RotationError
type Error = RotationError
The error type returned when the rotation cannot be computed.
Source§impl<T, U> TryRotation<Itrf, Tod<Iers2010>, T> for U
impl<T, U> TryRotation<Itrf, Tod<Iers2010>, T> for U
Source§type Error = RotationError
type Error = RotationError
The error type returned when the rotation cannot be computed.
Source§impl<T, U> TryRotation<J2000, Cirf, T> for U
impl<T, U> TryRotation<J2000, Cirf, T> for U
Source§impl<T, U> TryRotation<J2000, DynFrame, T> for U
impl<T, U> TryRotation<J2000, DynFrame, T> for U
Source§type Error = DynRotationError
type Error = DynRotationError
The error type returned when the rotation cannot be computed.
Source§impl<T, U> TryRotation<J2000, Iau<DynOrigin>, T> for U
impl<T, U> TryRotation<J2000, Iau<DynOrigin>, T> for U
Source§type Error = RotationError
type Error = RotationError
The error type returned when the rotation cannot be computed.
Source§impl<T, U> TryRotation<J2000, Icrf, T> for U
impl<T, U> TryRotation<J2000, Icrf, T> for U
Source§impl<T, U> TryRotation<J2000, Itrf, T> for U
impl<T, U> TryRotation<J2000, Itrf, T> for U
Source§impl<T, U> TryRotation<J2000, Mod<Iers1996>, T> for U
impl<T, U> TryRotation<J2000, Mod<Iers1996>, T> for U
Source§type Error = RotationError
type Error = RotationError
The error type returned when the rotation cannot be computed.
Source§impl<T, U> TryRotation<J2000, Mod<Iers2003>, T> for U
impl<T, U> TryRotation<J2000, Mod<Iers2003>, T> for U
Source§type Error = RotationError
type Error = RotationError
The error type returned when the rotation cannot be computed.
Source§impl<T, U> TryRotation<J2000, Mod<Iers2010>, T> for U
impl<T, U> TryRotation<J2000, Mod<Iers2010>, T> for U
Source§type Error = RotationError
type Error = RotationError
The error type returned when the rotation cannot be computed.
Source§impl<T, U> TryRotation<J2000, Pef<Iers1996>, T> for U
impl<T, U> TryRotation<J2000, Pef<Iers1996>, T> for U
Source§type Error = RotationError
type Error = RotationError
The error type returned when the rotation cannot be computed.
Source§impl<T, U> TryRotation<J2000, Pef<Iers2003>, T> for U
impl<T, U> TryRotation<J2000, Pef<Iers2003>, T> for U
Source§type Error = RotationError
type Error = RotationError
The error type returned when the rotation cannot be computed.
Source§impl<T, U> TryRotation<J2000, Pef<Iers2010>, T> for U
impl<T, U> TryRotation<J2000, Pef<Iers2010>, T> for U
Source§type Error = RotationError
type Error = RotationError
The error type returned when the rotation cannot be computed.
Source§impl<T, U> TryRotation<J2000, Teme, T> for U
impl<T, U> TryRotation<J2000, Teme, T> for U
Source§impl<T, U> TryRotation<J2000, Tirf, T> for U
impl<T, U> TryRotation<J2000, Tirf, T> for U
Source§impl<T, U> TryRotation<J2000, Tod<Iers1996>, T> for U
impl<T, U> TryRotation<J2000, Tod<Iers1996>, T> for U
Source§type Error = RotationError
type Error = RotationError
The error type returned when the rotation cannot be computed.
Source§impl<T, U> TryRotation<J2000, Tod<Iers2003>, T> for U
impl<T, U> TryRotation<J2000, Tod<Iers2003>, T> for U
Source§type Error = RotationError
type Error = RotationError
The error type returned when the rotation cannot be computed.
Source§impl<T, U> TryRotation<J2000, Tod<Iers2010>, T> for U
impl<T, U> TryRotation<J2000, Tod<Iers2010>, T> for U
Source§type Error = RotationError
type Error = RotationError
The error type returned when the rotation cannot be computed.
Source§impl<T, U> TryRotation<Mod<Iers1996>, Cirf, T> for U
impl<T, U> TryRotation<Mod<Iers1996>, Cirf, T> for U
Source§type Error = RotationError
type Error = RotationError
The error type returned when the rotation cannot be computed.
Source§impl<T, U> TryRotation<Mod<Iers1996>, DynFrame, T> for U
impl<T, U> TryRotation<Mod<Iers1996>, DynFrame, T> for U
Source§type Error = DynRotationError
type Error = DynRotationError
The error type returned when the rotation cannot be computed.
Source§impl<T, U> TryRotation<Mod<Iers1996>, Iau<DynOrigin>, T> for U
impl<T, U> TryRotation<Mod<Iers1996>, Iau<DynOrigin>, T> for U
Source§type Error = RotationError
type Error = RotationError
The error type returned when the rotation cannot be computed.
Source§impl<T, U> TryRotation<Mod<Iers1996>, Icrf, T> for U
impl<T, U> TryRotation<Mod<Iers1996>, Icrf, T> for U
Source§type Error = RotationError
type Error = RotationError
The error type returned when the rotation cannot be computed.
Source§impl<T, U> TryRotation<Mod<Iers1996>, Itrf, T> for U
impl<T, U> TryRotation<Mod<Iers1996>, Itrf, T> for U
Source§type Error = RotationError
type Error = RotationError
The error type returned when the rotation cannot be computed.
Source§impl<T, U> TryRotation<Mod<Iers1996>, J2000, T> for U
impl<T, U> TryRotation<Mod<Iers1996>, J2000, T> for U
Source§type Error = RotationError
type Error = RotationError
The error type returned when the rotation cannot be computed.
Source§impl<T, U> TryRotation<Mod<Iers1996>, Pef<Iers1996>, T> for U
impl<T, U> TryRotation<Mod<Iers1996>, Pef<Iers1996>, T> for U
Source§type Error = RotationError
type Error = RotationError
The error type returned when the rotation cannot be computed.
Source§impl<T, U> TryRotation<Mod<Iers1996>, Teme, T> for U
impl<T, U> TryRotation<Mod<Iers1996>, Teme, T> for U
Source§type Error = RotationError
type Error = RotationError
The error type returned when the rotation cannot be computed.
Source§impl<T, U> TryRotation<Mod<Iers1996>, Tirf, T> for U
impl<T, U> TryRotation<Mod<Iers1996>, Tirf, T> for U
Source§type Error = RotationError
type Error = RotationError
The error type returned when the rotation cannot be computed.
Source§impl<T, U> TryRotation<Mod<Iers1996>, Tod<Iers1996>, T> for U
impl<T, U> TryRotation<Mod<Iers1996>, Tod<Iers1996>, T> for U
Source§type Error = RotationError
type Error = RotationError
The error type returned when the rotation cannot be computed.
Source§impl<T, U> TryRotation<Mod<Iers2003>, Cirf, T> for U
impl<T, U> TryRotation<Mod<Iers2003>, Cirf, T> for U
Source§type Error = RotationError
type Error = RotationError
The error type returned when the rotation cannot be computed.
Source§impl<T, U> TryRotation<Mod<Iers2003>, DynFrame, T> for U
impl<T, U> TryRotation<Mod<Iers2003>, DynFrame, T> for U
Source§type Error = DynRotationError
type Error = DynRotationError
The error type returned when the rotation cannot be computed.
Source§impl<T, U> TryRotation<Mod<Iers2003>, Iau<DynOrigin>, T> for U
impl<T, U> TryRotation<Mod<Iers2003>, Iau<DynOrigin>, T> for U
Source§type Error = RotationError
type Error = RotationError
The error type returned when the rotation cannot be computed.
Source§impl<T, U> TryRotation<Mod<Iers2003>, Icrf, T> for U
impl<T, U> TryRotation<Mod<Iers2003>, Icrf, T> for U
Source§type Error = RotationError
type Error = RotationError
The error type returned when the rotation cannot be computed.
Source§impl<T, U> TryRotation<Mod<Iers2003>, Itrf, T> for U
impl<T, U> TryRotation<Mod<Iers2003>, Itrf, T> for U
Source§type Error = RotationError
type Error = RotationError
The error type returned when the rotation cannot be computed.
Source§impl<T, U> TryRotation<Mod<Iers2003>, J2000, T> for U
impl<T, U> TryRotation<Mod<Iers2003>, J2000, T> for U
Source§type Error = RotationError
type Error = RotationError
The error type returned when the rotation cannot be computed.
Source§impl<T, U> TryRotation<Mod<Iers2003>, Pef<Iers2003>, T> for U
impl<T, U> TryRotation<Mod<Iers2003>, Pef<Iers2003>, T> for U
Source§type Error = RotationError
type Error = RotationError
The error type returned when the rotation cannot be computed.
Source§impl<T, U> TryRotation<Mod<Iers2003>, Teme, T> for U
impl<T, U> TryRotation<Mod<Iers2003>, Teme, T> for U
Source§type Error = RotationError
type Error = RotationError
The error type returned when the rotation cannot be computed.
Source§impl<T, U> TryRotation<Mod<Iers2003>, Tirf, T> for U
impl<T, U> TryRotation<Mod<Iers2003>, Tirf, T> for U
Source§type Error = RotationError
type Error = RotationError
The error type returned when the rotation cannot be computed.
Source§impl<T, U> TryRotation<Mod<Iers2003>, Tod<Iers2003>, T> for U
impl<T, U> TryRotation<Mod<Iers2003>, Tod<Iers2003>, T> for U
Source§type Error = RotationError
type Error = RotationError
The error type returned when the rotation cannot be computed.
Source§impl<T, U> TryRotation<Mod<Iers2010>, Cirf, T> for U
impl<T, U> TryRotation<Mod<Iers2010>, Cirf, T> for U
Source§type Error = RotationError
type Error = RotationError
The error type returned when the rotation cannot be computed.
Source§impl<T, U> TryRotation<Mod<Iers2010>, DynFrame, T> for U
impl<T, U> TryRotation<Mod<Iers2010>, DynFrame, T> for U
Source§type Error = DynRotationError
type Error = DynRotationError
The error type returned when the rotation cannot be computed.
Source§impl<T, U> TryRotation<Mod<Iers2010>, Iau<DynOrigin>, T> for U
impl<T, U> TryRotation<Mod<Iers2010>, Iau<DynOrigin>, T> for U
Source§type Error = RotationError
type Error = RotationError
The error type returned when the rotation cannot be computed.
Source§impl<T, U> TryRotation<Mod<Iers2010>, Icrf, T> for U
impl<T, U> TryRotation<Mod<Iers2010>, Icrf, T> for U
Source§type Error = RotationError
type Error = RotationError
The error type returned when the rotation cannot be computed.
Source§impl<T, U> TryRotation<Mod<Iers2010>, Itrf, T> for U
impl<T, U> TryRotation<Mod<Iers2010>, Itrf, T> for U
Source§type Error = RotationError
type Error = RotationError
The error type returned when the rotation cannot be computed.
Source§impl<T, U> TryRotation<Mod<Iers2010>, J2000, T> for U
impl<T, U> TryRotation<Mod<Iers2010>, J2000, T> for U
Source§type Error = RotationError
type Error = RotationError
The error type returned when the rotation cannot be computed.
Source§impl<T, U> TryRotation<Mod<Iers2010>, Pef<Iers2010>, T> for U
impl<T, U> TryRotation<Mod<Iers2010>, Pef<Iers2010>, T> for U
Source§type Error = RotationError
type Error = RotationError
The error type returned when the rotation cannot be computed.
Source§impl<T, U> TryRotation<Mod<Iers2010>, Teme, T> for U
impl<T, U> TryRotation<Mod<Iers2010>, Teme, T> for U
Source§type Error = RotationError
type Error = RotationError
The error type returned when the rotation cannot be computed.
Source§impl<T, U> TryRotation<Mod<Iers2010>, Tirf, T> for U
impl<T, U> TryRotation<Mod<Iers2010>, Tirf, T> for U
Source§type Error = RotationError
type Error = RotationError
The error type returned when the rotation cannot be computed.
Source§impl<T, U> TryRotation<Mod<Iers2010>, Tod<Iers2010>, T> for U
impl<T, U> TryRotation<Mod<Iers2010>, Tod<Iers2010>, T> for U
Source§type Error = RotationError
type Error = RotationError
The error type returned when the rotation cannot be computed.
Source§impl<T, U> TryRotation<Pef<Iers1996>, Cirf, T> for U
impl<T, U> TryRotation<Pef<Iers1996>, Cirf, T> for U
Source§type Error = RotationError
type Error = RotationError
The error type returned when the rotation cannot be computed.
Source§impl<T, U> TryRotation<Pef<Iers1996>, DynFrame, T> for U
impl<T, U> TryRotation<Pef<Iers1996>, DynFrame, T> for U
Source§type Error = DynRotationError
type Error = DynRotationError
The error type returned when the rotation cannot be computed.
Source§impl<T, U> TryRotation<Pef<Iers1996>, Iau<DynOrigin>, T> for U
impl<T, U> TryRotation<Pef<Iers1996>, Iau<DynOrigin>, T> for U
Source§type Error = RotationError
type Error = RotationError
The error type returned when the rotation cannot be computed.
Source§impl<T, U> TryRotation<Pef<Iers1996>, Icrf, T> for U
impl<T, U> TryRotation<Pef<Iers1996>, Icrf, T> for U
Source§type Error = RotationError
type Error = RotationError
The error type returned when the rotation cannot be computed.
Source§impl<T, U> TryRotation<Pef<Iers1996>, Itrf, T> for U
impl<T, U> TryRotation<Pef<Iers1996>, Itrf, T> for U
Source§type Error = RotationError
type Error = RotationError
The error type returned when the rotation cannot be computed.
Source§impl<T, U> TryRotation<Pef<Iers1996>, J2000, T> for U
impl<T, U> TryRotation<Pef<Iers1996>, J2000, T> for U
Source§type Error = RotationError
type Error = RotationError
The error type returned when the rotation cannot be computed.
Source§impl<T, U> TryRotation<Pef<Iers1996>, Mod<Iers1996>, T> for U
impl<T, U> TryRotation<Pef<Iers1996>, Mod<Iers1996>, T> for U
Source§type Error = RotationError
type Error = RotationError
The error type returned when the rotation cannot be computed.
Source§impl<T, U> TryRotation<Pef<Iers1996>, Teme, T> for U
impl<T, U> TryRotation<Pef<Iers1996>, Teme, T> for U
Source§type Error = RotationError
type Error = RotationError
The error type returned when the rotation cannot be computed.
Source§impl<T, U> TryRotation<Pef<Iers1996>, Tirf, T> for U
impl<T, U> TryRotation<Pef<Iers1996>, Tirf, T> for U
Source§type Error = RotationError
type Error = RotationError
The error type returned when the rotation cannot be computed.
Source§impl<T, U> TryRotation<Pef<Iers1996>, Tod<Iers1996>, T> for U
impl<T, U> TryRotation<Pef<Iers1996>, Tod<Iers1996>, T> for U
Source§type Error = RotationError
type Error = RotationError
The error type returned when the rotation cannot be computed.
Source§impl<T, U> TryRotation<Pef<Iers2003>, Cirf, T> for U
impl<T, U> TryRotation<Pef<Iers2003>, Cirf, T> for U
Source§type Error = RotationError
type Error = RotationError
The error type returned when the rotation cannot be computed.
Source§impl<T, U> TryRotation<Pef<Iers2003>, DynFrame, T> for U
impl<T, U> TryRotation<Pef<Iers2003>, DynFrame, T> for U
Source§type Error = DynRotationError
type Error = DynRotationError
The error type returned when the rotation cannot be computed.
Source§impl<T, U> TryRotation<Pef<Iers2003>, Iau<DynOrigin>, T> for U
impl<T, U> TryRotation<Pef<Iers2003>, Iau<DynOrigin>, T> for U
Source§type Error = RotationError
type Error = RotationError
The error type returned when the rotation cannot be computed.
Source§impl<T, U> TryRotation<Pef<Iers2003>, Icrf, T> for U
impl<T, U> TryRotation<Pef<Iers2003>, Icrf, T> for U
Source§type Error = RotationError
type Error = RotationError
The error type returned when the rotation cannot be computed.
Source§impl<T, U> TryRotation<Pef<Iers2003>, Itrf, T> for U
impl<T, U> TryRotation<Pef<Iers2003>, Itrf, T> for U
Source§type Error = RotationError
type Error = RotationError
The error type returned when the rotation cannot be computed.
Source§impl<T, U> TryRotation<Pef<Iers2003>, J2000, T> for U
impl<T, U> TryRotation<Pef<Iers2003>, J2000, T> for U
Source§type Error = RotationError
type Error = RotationError
The error type returned when the rotation cannot be computed.
Source§impl<T, U> TryRotation<Pef<Iers2003>, Mod<Iers2003>, T> for U
impl<T, U> TryRotation<Pef<Iers2003>, Mod<Iers2003>, T> for U
Source§type Error = RotationError
type Error = RotationError
The error type returned when the rotation cannot be computed.
Source§impl<T, U> TryRotation<Pef<Iers2003>, Teme, T> for U
impl<T, U> TryRotation<Pef<Iers2003>, Teme, T> for U
Source§type Error = RotationError
type Error = RotationError
The error type returned when the rotation cannot be computed.
Source§impl<T, U> TryRotation<Pef<Iers2003>, Tirf, T> for U
impl<T, U> TryRotation<Pef<Iers2003>, Tirf, T> for U
Source§type Error = RotationError
type Error = RotationError
The error type returned when the rotation cannot be computed.
Source§impl<T, U> TryRotation<Pef<Iers2003>, Tod<Iers2003>, T> for U
impl<T, U> TryRotation<Pef<Iers2003>, Tod<Iers2003>, T> for U
Source§type Error = RotationError
type Error = RotationError
The error type returned when the rotation cannot be computed.
Source§impl<T, U> TryRotation<Pef<Iers2010>, Cirf, T> for U
impl<T, U> TryRotation<Pef<Iers2010>, Cirf, T> for U
Source§type Error = RotationError
type Error = RotationError
The error type returned when the rotation cannot be computed.
Source§impl<T, U> TryRotation<Pef<Iers2010>, DynFrame, T> for U
impl<T, U> TryRotation<Pef<Iers2010>, DynFrame, T> for U
Source§type Error = DynRotationError
type Error = DynRotationError
The error type returned when the rotation cannot be computed.
Source§impl<T, U> TryRotation<Pef<Iers2010>, Iau<DynOrigin>, T> for U
impl<T, U> TryRotation<Pef<Iers2010>, Iau<DynOrigin>, T> for U
Source§type Error = RotationError
type Error = RotationError
The error type returned when the rotation cannot be computed.
Source§impl<T, U> TryRotation<Pef<Iers2010>, Icrf, T> for U
impl<T, U> TryRotation<Pef<Iers2010>, Icrf, T> for U
Source§type Error = RotationError
type Error = RotationError
The error type returned when the rotation cannot be computed.
Source§impl<T, U> TryRotation<Pef<Iers2010>, Itrf, T> for U
impl<T, U> TryRotation<Pef<Iers2010>, Itrf, T> for U
Source§type Error = RotationError
type Error = RotationError
The error type returned when the rotation cannot be computed.
Source§impl<T, U> TryRotation<Pef<Iers2010>, J2000, T> for U
impl<T, U> TryRotation<Pef<Iers2010>, J2000, T> for U
Source§type Error = RotationError
type Error = RotationError
The error type returned when the rotation cannot be computed.
Source§impl<T, U> TryRotation<Pef<Iers2010>, Mod<Iers2010>, T> for U
impl<T, U> TryRotation<Pef<Iers2010>, Mod<Iers2010>, T> for U
Source§type Error = RotationError
type Error = RotationError
The error type returned when the rotation cannot be computed.
Source§impl<T, U> TryRotation<Pef<Iers2010>, Teme, T> for U
impl<T, U> TryRotation<Pef<Iers2010>, Teme, T> for U
Source§type Error = RotationError
type Error = RotationError
The error type returned when the rotation cannot be computed.
Source§impl<T, U> TryRotation<Pef<Iers2010>, Tirf, T> for U
impl<T, U> TryRotation<Pef<Iers2010>, Tirf, T> for U
Source§type Error = RotationError
type Error = RotationError
The error type returned when the rotation cannot be computed.
Source§impl<T, U> TryRotation<Pef<Iers2010>, Tod<Iers2010>, T> for U
impl<T, U> TryRotation<Pef<Iers2010>, Tod<Iers2010>, T> for U
Source§type Error = RotationError
type Error = RotationError
The error type returned when the rotation cannot be computed.
Source§impl<T, U> TryRotation<Teme, Cirf, T> for U
impl<T, U> TryRotation<Teme, Cirf, T> for U
Source§impl<T, U> TryRotation<Teme, DynFrame, T> for U
impl<T, U> TryRotation<Teme, DynFrame, T> for U
Source§type Error = DynRotationError
type Error = DynRotationError
The error type returned when the rotation cannot be computed.
Source§impl<T, U> TryRotation<Teme, Iau<DynOrigin>, T> for U
impl<T, U> TryRotation<Teme, Iau<DynOrigin>, T> for U
Source§type Error = RotationError
type Error = RotationError
The error type returned when the rotation cannot be computed.
Source§impl<T, U> TryRotation<Teme, Icrf, T> for U
impl<T, U> TryRotation<Teme, Icrf, T> for U
Source§impl<T, U> TryRotation<Teme, Itrf, T> for U
impl<T, U> TryRotation<Teme, Itrf, T> for U
Source§impl<T, U> TryRotation<Teme, J2000, T> for U
impl<T, U> TryRotation<Teme, J2000, T> for U
Source§impl<T, U> TryRotation<Teme, Mod<Iers1996>, T> for U
impl<T, U> TryRotation<Teme, Mod<Iers1996>, T> for U
Source§type Error = RotationError
type Error = RotationError
The error type returned when the rotation cannot be computed.
Source§impl<T, U> TryRotation<Teme, Mod<Iers2003>, T> for U
impl<T, U> TryRotation<Teme, Mod<Iers2003>, T> for U
Source§type Error = RotationError
type Error = RotationError
The error type returned when the rotation cannot be computed.
Source§impl<T, U> TryRotation<Teme, Mod<Iers2010>, T> for U
impl<T, U> TryRotation<Teme, Mod<Iers2010>, T> for U
Source§type Error = RotationError
type Error = RotationError
The error type returned when the rotation cannot be computed.
Source§impl<T, U> TryRotation<Teme, Pef<Iers1996>, T> for U
impl<T, U> TryRotation<Teme, Pef<Iers1996>, T> for U
Source§type Error = RotationError
type Error = RotationError
The error type returned when the rotation cannot be computed.
Source§impl<T, U> TryRotation<Teme, Pef<Iers2003>, T> for U
impl<T, U> TryRotation<Teme, Pef<Iers2003>, T> for U
Source§type Error = RotationError
type Error = RotationError
The error type returned when the rotation cannot be computed.
Source§impl<T, U> TryRotation<Teme, Pef<Iers2010>, T> for U
impl<T, U> TryRotation<Teme, Pef<Iers2010>, T> for U
Source§type Error = RotationError
type Error = RotationError
The error type returned when the rotation cannot be computed.
Source§impl<T, U> TryRotation<Teme, Tirf, T> for U
impl<T, U> TryRotation<Teme, Tirf, T> for U
Source§impl<T, U> TryRotation<Teme, Tod<Iers1996>, T> for U
impl<T, U> TryRotation<Teme, Tod<Iers1996>, T> for U
Source§type Error = RotationError
type Error = RotationError
The error type returned when the rotation cannot be computed.
Source§impl<T, U> TryRotation<Teme, Tod<Iers2003>, T> for U
impl<T, U> TryRotation<Teme, Tod<Iers2003>, T> for U
Source§type Error = RotationError
type Error = RotationError
The error type returned when the rotation cannot be computed.
Source§impl<T, U> TryRotation<Teme, Tod<Iers2010>, T> for U
impl<T, U> TryRotation<Teme, Tod<Iers2010>, T> for U
Source§type Error = RotationError
type Error = RotationError
The error type returned when the rotation cannot be computed.
Source§impl<T, U> TryRotation<Tirf, Cirf, T> for U
impl<T, U> TryRotation<Tirf, Cirf, T> for U
Source§impl<T, U> TryRotation<Tirf, DynFrame, T> for U
impl<T, U> TryRotation<Tirf, DynFrame, T> for U
Source§type Error = DynRotationError
type Error = DynRotationError
The error type returned when the rotation cannot be computed.
Source§impl<T, U> TryRotation<Tirf, Iau<DynOrigin>, T> for U
impl<T, U> TryRotation<Tirf, Iau<DynOrigin>, T> for U
Source§type Error = RotationError
type Error = RotationError
The error type returned when the rotation cannot be computed.
Source§impl<T, U> TryRotation<Tirf, Icrf, T> for U
impl<T, U> TryRotation<Tirf, Icrf, T> for U
Source§impl<T, U> TryRotation<Tirf, Itrf, T> for U
impl<T, U> TryRotation<Tirf, Itrf, T> for U
Source§impl<T, U> TryRotation<Tirf, J2000, T> for U
impl<T, U> TryRotation<Tirf, J2000, T> for U
Source§impl<T, U> TryRotation<Tirf, Mod<Iers1996>, T> for U
impl<T, U> TryRotation<Tirf, Mod<Iers1996>, T> for U
Source§type Error = RotationError
type Error = RotationError
The error type returned when the rotation cannot be computed.
Source§impl<T, U> TryRotation<Tirf, Mod<Iers2003>, T> for U
impl<T, U> TryRotation<Tirf, Mod<Iers2003>, T> for U
Source§type Error = RotationError
type Error = RotationError
The error type returned when the rotation cannot be computed.
Source§impl<T, U> TryRotation<Tirf, Mod<Iers2010>, T> for U
impl<T, U> TryRotation<Tirf, Mod<Iers2010>, T> for U
Source§type Error = RotationError
type Error = RotationError
The error type returned when the rotation cannot be computed.
Source§impl<T, U> TryRotation<Tirf, Pef<Iers1996>, T> for U
impl<T, U> TryRotation<Tirf, Pef<Iers1996>, T> for U
Source§type Error = RotationError
type Error = RotationError
The error type returned when the rotation cannot be computed.
Source§impl<T, U> TryRotation<Tirf, Pef<Iers2003>, T> for U
impl<T, U> TryRotation<Tirf, Pef<Iers2003>, T> for U
Source§type Error = RotationError
type Error = RotationError
The error type returned when the rotation cannot be computed.
Source§impl<T, U> TryRotation<Tirf, Pef<Iers2010>, T> for U
impl<T, U> TryRotation<Tirf, Pef<Iers2010>, T> for U
Source§type Error = RotationError
type Error = RotationError
The error type returned when the rotation cannot be computed.
Source§impl<T, U> TryRotation<Tirf, Teme, T> for U
impl<T, U> TryRotation<Tirf, Teme, T> for U
Source§impl<T, U> TryRotation<Tirf, Tod<Iers1996>, T> for U
impl<T, U> TryRotation<Tirf, Tod<Iers1996>, T> for U
Source§type Error = RotationError
type Error = RotationError
The error type returned when the rotation cannot be computed.
Source§impl<T, U> TryRotation<Tirf, Tod<Iers2003>, T> for U
impl<T, U> TryRotation<Tirf, Tod<Iers2003>, T> for U
Source§type Error = RotationError
type Error = RotationError
The error type returned when the rotation cannot be computed.
Source§impl<T, U> TryRotation<Tirf, Tod<Iers2010>, T> for U
impl<T, U> TryRotation<Tirf, Tod<Iers2010>, T> for U
Source§type Error = RotationError
type Error = RotationError
The error type returned when the rotation cannot be computed.
Source§impl<T, U> TryRotation<Tod<Iers1996>, Cirf, T> for U
impl<T, U> TryRotation<Tod<Iers1996>, Cirf, T> for U
Source§type Error = RotationError
type Error = RotationError
The error type returned when the rotation cannot be computed.
Source§impl<T, U> TryRotation<Tod<Iers1996>, DynFrame, T> for U
impl<T, U> TryRotation<Tod<Iers1996>, DynFrame, T> for U
Source§type Error = DynRotationError
type Error = DynRotationError
The error type returned when the rotation cannot be computed.
Source§impl<T, U> TryRotation<Tod<Iers1996>, Iau<DynOrigin>, T> for U
impl<T, U> TryRotation<Tod<Iers1996>, Iau<DynOrigin>, T> for U
Source§type Error = RotationError
type Error = RotationError
The error type returned when the rotation cannot be computed.
Source§impl<T, U> TryRotation<Tod<Iers1996>, Icrf, T> for U
impl<T, U> TryRotation<Tod<Iers1996>, Icrf, T> for U
Source§type Error = RotationError
type Error = RotationError
The error type returned when the rotation cannot be computed.
Source§impl<T, U> TryRotation<Tod<Iers1996>, Itrf, T> for U
impl<T, U> TryRotation<Tod<Iers1996>, Itrf, T> for U
Source§type Error = RotationError
type Error = RotationError
The error type returned when the rotation cannot be computed.
Source§impl<T, U> TryRotation<Tod<Iers1996>, J2000, T> for U
impl<T, U> TryRotation<Tod<Iers1996>, J2000, T> for U
Source§type Error = RotationError
type Error = RotationError
The error type returned when the rotation cannot be computed.
Source§impl<T, U> TryRotation<Tod<Iers1996>, Mod<Iers1996>, T> for U
impl<T, U> TryRotation<Tod<Iers1996>, Mod<Iers1996>, T> for U
Source§type Error = RotationError
type Error = RotationError
The error type returned when the rotation cannot be computed.
Source§impl<T, U> TryRotation<Tod<Iers1996>, Pef<Iers1996>, T> for U
impl<T, U> TryRotation<Tod<Iers1996>, Pef<Iers1996>, T> for U
Source§type Error = RotationError
type Error = RotationError
The error type returned when the rotation cannot be computed.
Source§impl<T, U> TryRotation<Tod<Iers1996>, Teme, T> for U
impl<T, U> TryRotation<Tod<Iers1996>, Teme, T> for U
Source§type Error = RotationError
type Error = RotationError
The error type returned when the rotation cannot be computed.
Source§impl<T, U> TryRotation<Tod<Iers1996>, Tirf, T> for U
impl<T, U> TryRotation<Tod<Iers1996>, Tirf, T> for U
Source§type Error = RotationError
type Error = RotationError
The error type returned when the rotation cannot be computed.
Source§impl<T, U> TryRotation<Tod<Iers2003>, Cirf, T> for U
impl<T, U> TryRotation<Tod<Iers2003>, Cirf, T> for U
Source§type Error = RotationError
type Error = RotationError
The error type returned when the rotation cannot be computed.
Source§impl<T, U> TryRotation<Tod<Iers2003>, DynFrame, T> for U
impl<T, U> TryRotation<Tod<Iers2003>, DynFrame, T> for U
Source§type Error = DynRotationError
type Error = DynRotationError
The error type returned when the rotation cannot be computed.
Source§impl<T, U> TryRotation<Tod<Iers2003>, Iau<DynOrigin>, T> for U
impl<T, U> TryRotation<Tod<Iers2003>, Iau<DynOrigin>, T> for U
Source§type Error = RotationError
type Error = RotationError
The error type returned when the rotation cannot be computed.
Source§impl<T, U> TryRotation<Tod<Iers2003>, Icrf, T> for U
impl<T, U> TryRotation<Tod<Iers2003>, Icrf, T> for U
Source§type Error = RotationError
type Error = RotationError
The error type returned when the rotation cannot be computed.
Source§impl<T, U> TryRotation<Tod<Iers2003>, Itrf, T> for U
impl<T, U> TryRotation<Tod<Iers2003>, Itrf, T> for U
Source§type Error = RotationError
type Error = RotationError
The error type returned when the rotation cannot be computed.
Source§impl<T, U> TryRotation<Tod<Iers2003>, J2000, T> for U
impl<T, U> TryRotation<Tod<Iers2003>, J2000, T> for U
Source§type Error = RotationError
type Error = RotationError
The error type returned when the rotation cannot be computed.
Source§impl<T, U> TryRotation<Tod<Iers2003>, Mod<Iers2003>, T> for U
impl<T, U> TryRotation<Tod<Iers2003>, Mod<Iers2003>, T> for U
Source§type Error = RotationError
type Error = RotationError
The error type returned when the rotation cannot be computed.
Source§impl<T, U> TryRotation<Tod<Iers2003>, Pef<Iers2003>, T> for U
impl<T, U> TryRotation<Tod<Iers2003>, Pef<Iers2003>, T> for U
Source§type Error = RotationError
type Error = RotationError
The error type returned when the rotation cannot be computed.
Source§impl<T, U> TryRotation<Tod<Iers2003>, Teme, T> for U
impl<T, U> TryRotation<Tod<Iers2003>, Teme, T> for U
Source§type Error = RotationError
type Error = RotationError
The error type returned when the rotation cannot be computed.
Source§impl<T, U> TryRotation<Tod<Iers2003>, Tirf, T> for U
impl<T, U> TryRotation<Tod<Iers2003>, Tirf, T> for U
Source§type Error = RotationError
type Error = RotationError
The error type returned when the rotation cannot be computed.
Source§impl<T, U> TryRotation<Tod<Iers2010>, Cirf, T> for U
impl<T, U> TryRotation<Tod<Iers2010>, Cirf, T> for U
Source§type Error = RotationError
type Error = RotationError
The error type returned when the rotation cannot be computed.
Source§impl<T, U> TryRotation<Tod<Iers2010>, DynFrame, T> for U
impl<T, U> TryRotation<Tod<Iers2010>, DynFrame, T> for U
Source§type Error = DynRotationError
type Error = DynRotationError
The error type returned when the rotation cannot be computed.
Source§impl<T, U> TryRotation<Tod<Iers2010>, Iau<DynOrigin>, T> for U
impl<T, U> TryRotation<Tod<Iers2010>, Iau<DynOrigin>, T> for U
Source§type Error = RotationError
type Error = RotationError
The error type returned when the rotation cannot be computed.
Source§impl<T, U> TryRotation<Tod<Iers2010>, Icrf, T> for U
impl<T, U> TryRotation<Tod<Iers2010>, Icrf, T> for U
Source§type Error = RotationError
type Error = RotationError
The error type returned when the rotation cannot be computed.
Source§impl<T, U> TryRotation<Tod<Iers2010>, Itrf, T> for U
impl<T, U> TryRotation<Tod<Iers2010>, Itrf, T> for U
Source§type Error = RotationError
type Error = RotationError
The error type returned when the rotation cannot be computed.
Source§impl<T, U> TryRotation<Tod<Iers2010>, J2000, T> for U
impl<T, U> TryRotation<Tod<Iers2010>, J2000, T> for U
Source§type Error = RotationError
type Error = RotationError
The error type returned when the rotation cannot be computed.
Source§impl<T, U> TryRotation<Tod<Iers2010>, Mod<Iers2010>, T> for U
impl<T, U> TryRotation<Tod<Iers2010>, Mod<Iers2010>, T> for U
Source§type Error = RotationError
type Error = RotationError
The error type returned when the rotation cannot be computed.
Source§impl<T, U> TryRotation<Tod<Iers2010>, Pef<Iers2010>, T> for U
impl<T, U> TryRotation<Tod<Iers2010>, Pef<Iers2010>, T> for U
Source§type Error = RotationError
type Error = RotationError
The error type returned when the rotation cannot be computed.
Source§impl<T, U> TryRotation<Tod<Iers2010>, Teme, T> for U
impl<T, U> TryRotation<Tod<Iers2010>, Teme, T> for U
Source§type Error = RotationError
type Error = RotationError
The error type returned when the rotation cannot be computed.
Source§impl<T, U> TryRotation<Tod<Iers2010>, Tirf, T> for U
impl<T, U> TryRotation<Tod<Iers2010>, Tirf, T> for U
Source§type Error = RotationError
type Error = RotationError
The error type returned when the rotation cannot be computed.