Skip to main content

DefaultRotationProvider

Struct DefaultRotationProvider 

Source
pub struct DefaultRotationProvider;

Trait Implementations§

Source§

impl Clone for DefaultRotationProvider

Source§

fn clone(&self) -> DefaultRotationProvider

Returns a duplicate of the value. Read more
1.0.0 · Source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
Source§

impl Debug for DefaultRotationProvider

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
Source§

impl OffsetProvider for DefaultRotationProvider

Source§

impl<T> RotationProvider<T> for DefaultRotationProvider
where T: TimeScale,

Source§

type EopError = Infallible

Source§

fn corrections( &self, _time: Time<T>, _sys: ReferenceSystem, ) -> Result<Corrections, Self::EopError>

Source§

fn pole_coords(&self, _time: Time<T>) -> Result<PoleCoords, Self::EopError>

Source§

fn icrf_to_iau<R>( &self, time: Time<T>, frame: Iau<R>, ) -> Result<Rotation, RotationError>
where T: TimeScale + Copy, R: TryRotationalElements, Self: TryOffset<T, Tdb>,

Source§

fn iau_to_icrf<R>( &self, time: Time<T>, frame: Iau<R>, ) -> Result<Rotation, RotationError>
where T: TimeScale + Copy, R: TryRotationalElements, Self: TryOffset<T, Tdb>,

Source§

fn icrf_to_itrf(&self, time: Time<T>) -> Result<Rotation, RotationError>
where T: TimeScale + Copy, Self: TryOffset<T, Tdb> + TryOffset<T, Tt> + TryOffset<T, Ut1>,

Source§

fn itrf_to_icrf(&self, time: Time<T>) -> Result<Rotation, RotationError>
where T: TimeScale + Copy, Self: TryOffset<T, Tdb> + TryOffset<T, Tt> + TryOffset<T, Ut1>,

Source§

fn icrf_to_j2000(&self) -> Rotation

Source§

fn j2000_to_icrf(&self) -> Rotation

Source§

fn j2000_to_mod( &self, time: Time<T>, sys: ReferenceSystem, ) -> Result<Rotation, RotationError>
where T: TimeScale + Copy, Self: TryOffset<T, Tt>,

Source§

fn mod_to_j2000( &self, time: Time<T>, sys: ReferenceSystem, ) -> Result<Rotation, RotationError>
where T: TimeScale + Copy, Self: TryOffset<T, Tt>,

Source§

fn icrf_to_mod( &self, time: Time<T>, sys: ReferenceSystem, ) -> Result<Rotation, RotationError>
where T: TimeScale + Copy, Self: TryOffset<T, Tt>,

Source§

fn mod_to_icrf( &self, time: Time<T>, sys: ReferenceSystem, ) -> Result<Rotation, RotationError>
where T: TimeScale + Copy, Self: TryOffset<T, Tt>,

Source§

fn mod_to_tod( &self, time: Time<T>, sys: ReferenceSystem, ) -> Result<Rotation, RotationError>
where T: TimeScale + Copy, Self: TryOffset<T, Tdb>,

Source§

fn tod_to_mod( &self, time: Time<T>, sys: ReferenceSystem, ) -> Result<Rotation, RotationError>
where T: TimeScale + Copy, Self: TryOffset<T, Tdb>,

Source§

fn tod_to_pef( &self, time: Time<T>, sys: ReferenceSystem, ) -> Result<Rotation, RotationError>
where T: TimeScale + Copy, Self: TryOffset<T, Tt> + TryOffset<T, Ut1>,

Source§

fn pef_to_tod( &self, time: Time<T>, sys: ReferenceSystem, ) -> Result<Rotation, RotationError>
where T: TimeScale + Copy, Self: TryOffset<T, Tt> + TryOffset<T, Ut1>,

Source§

fn pef_to_itrf( &self, time: Time<T>, sys: ReferenceSystem, ) -> Result<Rotation, RotationError>
where T: TimeScale + Copy, Self: TryOffset<T, Tt>,

Source§

fn itrf_to_pef( &self, time: Time<T>, sys: ReferenceSystem, ) -> Result<Rotation, RotationError>
where T: TimeScale + Copy, Self: TryOffset<T, Tt>,

Source§

fn tod_to_teme(&self, time: Time<T>) -> Result<Rotation, RotationError>
where T: TimeScale + Copy, Self: TryOffset<T, Tdb>,

Source§

fn teme_to_tod(&self, time: Time<T>) -> Result<Rotation, RotationError>
where T: TimeScale + Copy, Self: TryOffset<T, Tdb>,

Source§

fn icrf_to_cirf(&self, time: Time<T>) -> Result<Rotation, RotationError>
where T: TimeScale + Copy, Self: TryOffset<T, Tdb>,

Source§

fn cirf_to_icrf(&self, time: Time<T>) -> Result<Rotation, RotationError>
where T: TimeScale + Copy, Self: TryOffset<T, Tdb>,

Source§

fn cirf_to_tirf(&self, time: Time<T>) -> Result<Rotation, RotationError>
where T: TimeScale + Copy, Self: TryOffset<T, Ut1>,

Source§

fn tirf_to_cirf(&self, time: Time<T>) -> Result<Rotation, RotationError>
where T: TimeScale + Copy, Self: TryOffset<T, Ut1>,

Source§

fn tirf_to_itrf(&self, time: Time<T>) -> Result<Rotation, RotationError>
where T: TimeScale + Copy, Self: TryOffset<T, Tt>,

Source§

fn itrf_to_tirf(&self, time: Time<T>) -> Result<Rotation, RotationError>
where T: TimeScale + Copy, Self: TryOffset<T, Tt>,

Source§

impl Copy for DefaultRotationProvider

Auto Trait Implementations§

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> CloneToUninit for T
where T: Clone,

Source§

unsafe fn clone_to_uninit(&self, dest: *mut u8)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dest. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T> IntoEither for T

Source§

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 more
Source§

fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
where F: FnOnce(&Self) -> bool,

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
Source§

impl<T, Origin, Target> Offset<Origin, Target> for T
where Origin: TimeScale, Target: TimeScale, T: TryOffset<Origin, Target, Error = Infallible>,

Source§

fn offset(&self, origin: Origin, target: Target, delta: TimeDelta) -> TimeDelta

Source§

impl<T> ToOwned for T
where T: Clone,

Source§

type Owned = T

The resulting type after obtaining ownership.
Source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
Source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
Source§

impl<T> TryOffset<DynTimeScale, DynTimeScale> for T
where T: OffsetProvider,

Source§

impl<T> TryOffset<DynTimeScale, Tai> for T
where T: OffsetProvider,

Source§

type Error = <T as OffsetProvider>::Error

Source§

fn try_offset( &self, origin: DynTimeScale, target: Tai, delta: TimeDelta, ) -> Result<TimeDelta, <T as TryOffset<DynTimeScale, Tai>>::Error>

Source§

impl<T> TryOffset<DynTimeScale, Tcb> for T
where T: OffsetProvider,

Source§

type Error = <T as OffsetProvider>::Error

Source§

fn try_offset( &self, origin: DynTimeScale, target: Tcb, delta: TimeDelta, ) -> Result<TimeDelta, <T as TryOffset<DynTimeScale, Tcb>>::Error>

Source§

impl<T> TryOffset<DynTimeScale, Tcg> for T
where T: OffsetProvider,

Source§

type Error = <T as OffsetProvider>::Error

Source§

fn try_offset( &self, origin: DynTimeScale, target: Tcg, delta: TimeDelta, ) -> Result<TimeDelta, <T as TryOffset<DynTimeScale, Tcg>>::Error>

Source§

impl<T> TryOffset<DynTimeScale, Tdb> for T
where T: OffsetProvider,

Source§

type Error = <T as OffsetProvider>::Error

Source§

fn try_offset( &self, origin: DynTimeScale, target: Tdb, delta: TimeDelta, ) -> Result<TimeDelta, <T as TryOffset<DynTimeScale, Tdb>>::Error>

Source§

impl<T> TryOffset<DynTimeScale, Tt> for T
where T: OffsetProvider,

Source§

type Error = <T as OffsetProvider>::Error

Source§

fn try_offset( &self, origin: DynTimeScale, target: Tt, delta: TimeDelta, ) -> Result<TimeDelta, <T as TryOffset<DynTimeScale, Tt>>::Error>

Source§

impl<T> TryOffset<DynTimeScale, Ut1> for T
where T: OffsetProvider,

Source§

type Error = <T as OffsetProvider>::Error

Source§

fn try_offset( &self, origin: DynTimeScale, target: Ut1, delta: TimeDelta, ) -> Result<TimeDelta, <T as TryOffset<DynTimeScale, Ut1>>::Error>

Source§

impl<T> TryOffset<Tai, DynTimeScale> for T
where T: OffsetProvider,

Source§

type Error = <T as OffsetProvider>::Error

Source§

fn try_offset( &self, origin: Tai, target: DynTimeScale, delta: TimeDelta, ) -> Result<TimeDelta, <T as TryOffset<Tai, DynTimeScale>>::Error>

Source§

impl<T> TryOffset<Tai, Tai> for T
where T: OffsetProvider,

Source§

type Error = Infallible

Source§

fn try_offset( &self, _origin: Tai, _target: Tai, _delta: TimeDelta, ) -> Result<TimeDelta, <T as TryOffset<Tai, Tai>>::Error>

Source§

impl<T> TryOffset<Tai, Tcb> for T
where T: OffsetProvider,

Source§

type Error = Infallible

Source§

fn try_offset( &self, origin: Tai, target: Tcb, delta: TimeDelta, ) -> Result<TimeDelta, <T as TryOffset<Tai, Tcb>>::Error>

Source§

impl<T> TryOffset<Tai, Tcg> for T
where T: OffsetProvider,

Source§

type Error = Infallible

Source§

fn try_offset( &self, origin: Tai, target: Tcg, delta: TimeDelta, ) -> Result<TimeDelta, <T as TryOffset<Tai, Tcg>>::Error>

Source§

impl<T> TryOffset<Tai, Tdb> for T
where T: OffsetProvider,

Source§

type Error = Infallible

Source§

fn try_offset( &self, origin: Tai, target: Tdb, delta: TimeDelta, ) -> Result<TimeDelta, <T as TryOffset<Tai, Tdb>>::Error>

Source§

impl<T> TryOffset<Tai, Tt> for T
where T: OffsetProvider,

Source§

type Error = Infallible

Source§

fn try_offset( &self, _origin: Tai, _target: Tt, _delta: TimeDelta, ) -> Result<TimeDelta, <T as TryOffset<Tai, Tt>>::Error>

Source§

impl<T> TryOffset<Tai, Ut1> for T
where T: OffsetProvider,

Source§

type Error = <T as OffsetProvider>::Error

Source§

fn try_offset( &self, _origin: Tai, _target: Ut1, delta: TimeDelta, ) -> Result<TimeDelta, <T as TryOffset<Tai, Ut1>>::Error>

Source§

impl<T> TryOffset<Tcb, DynTimeScale> for T
where T: OffsetProvider,

Source§

type Error = <T as OffsetProvider>::Error

Source§

fn try_offset( &self, origin: Tcb, target: DynTimeScale, delta: TimeDelta, ) -> Result<TimeDelta, <T as TryOffset<Tcb, DynTimeScale>>::Error>

Source§

impl<T> TryOffset<Tcb, Tai> for T
where T: OffsetProvider,

Source§

type Error = Infallible

Source§

fn try_offset( &self, origin: Tcb, target: Tai, delta: TimeDelta, ) -> Result<TimeDelta, <T as TryOffset<Tcb, Tai>>::Error>

Source§

impl<T> TryOffset<Tcb, Tcb> for T
where T: OffsetProvider,

Source§

type Error = Infallible

Source§

fn try_offset( &self, _origin: Tcb, _target: Tcb, _delta: TimeDelta, ) -> Result<TimeDelta, <T as TryOffset<Tcb, Tcb>>::Error>

Source§

impl<T> TryOffset<Tcb, Tcg> for T
where T: OffsetProvider,

Source§

type Error = Infallible

Source§

fn try_offset( &self, origin: Tcb, target: Tcg, delta: TimeDelta, ) -> Result<TimeDelta, <T as TryOffset<Tcb, Tcg>>::Error>

Source§

impl<T> TryOffset<Tcb, Tdb> for T
where T: OffsetProvider,

Source§

type Error = Infallible

Source§

fn try_offset( &self, _origin: Tcb, _target: Tdb, delta: TimeDelta, ) -> Result<TimeDelta, <T as TryOffset<Tcb, Tdb>>::Error>

Source§

impl<T> TryOffset<Tcb, Tt> for T
where T: OffsetProvider,

Source§

type Error = Infallible

Source§

fn try_offset( &self, origin: Tcb, target: Tt, delta: TimeDelta, ) -> Result<TimeDelta, <T as TryOffset<Tcb, Tt>>::Error>

Source§

impl<T> TryOffset<Tcb, Ut1> for T
where T: OffsetProvider,

Source§

type Error = <T as OffsetProvider>::Error

Source§

fn try_offset( &self, _origin: Tcb, _target: Ut1, delta: TimeDelta, ) -> Result<TimeDelta, <T as TryOffset<Tcb, Ut1>>::Error>

Source§

impl<T> TryOffset<Tcg, DynTimeScale> for T
where T: OffsetProvider,

Source§

type Error = <T as OffsetProvider>::Error

Source§

fn try_offset( &self, origin: Tcg, target: DynTimeScale, delta: TimeDelta, ) -> Result<TimeDelta, <T as TryOffset<Tcg, DynTimeScale>>::Error>

Source§

impl<T> TryOffset<Tcg, Tai> for T
where T: OffsetProvider,

Source§

type Error = Infallible

Source§

fn try_offset( &self, origin: Tcg, target: Tai, delta: TimeDelta, ) -> Result<TimeDelta, <T as TryOffset<Tcg, Tai>>::Error>

Source§

impl<T> TryOffset<Tcg, Tcb> for T
where T: OffsetProvider,

Source§

type Error = Infallible

Source§

fn try_offset( &self, origin: Tcg, target: Tcb, delta: TimeDelta, ) -> Result<TimeDelta, <T as TryOffset<Tcg, Tcb>>::Error>

Source§

impl<T> TryOffset<Tcg, Tcg> for T
where T: OffsetProvider,

Source§

type Error = Infallible

Source§

fn try_offset( &self, _origin: Tcg, _target: Tcg, _delta: TimeDelta, ) -> Result<TimeDelta, <T as TryOffset<Tcg, Tcg>>::Error>

Source§

impl<T> TryOffset<Tcg, Tdb> for T
where T: OffsetProvider,

Source§

type Error = Infallible

Source§

fn try_offset( &self, origin: Tcg, target: Tdb, delta: TimeDelta, ) -> Result<TimeDelta, <T as TryOffset<Tcg, Tdb>>::Error>

Source§

impl<T> TryOffset<Tcg, Tt> for T
where T: OffsetProvider,

Source§

type Error = Infallible

Source§

fn try_offset( &self, _origin: Tcg, _target: Tt, delta: TimeDelta, ) -> Result<TimeDelta, <T as TryOffset<Tcg, Tt>>::Error>

Source§

impl<T> TryOffset<Tcg, Ut1> for T
where T: OffsetProvider,

Source§

type Error = <T as OffsetProvider>::Error

Source§

fn try_offset( &self, _origin: Tcg, _target: Ut1, delta: TimeDelta, ) -> Result<TimeDelta, <T as TryOffset<Tcg, Ut1>>::Error>

Source§

impl<T> TryOffset<Tdb, DynTimeScale> for T
where T: OffsetProvider,

Source§

type Error = <T as OffsetProvider>::Error

Source§

fn try_offset( &self, origin: Tdb, target: DynTimeScale, delta: TimeDelta, ) -> Result<TimeDelta, <T as TryOffset<Tdb, DynTimeScale>>::Error>

Source§

impl<T> TryOffset<Tdb, Tai> for T
where T: OffsetProvider,

Source§

type Error = Infallible

Source§

fn try_offset( &self, origin: Tdb, target: Tai, delta: TimeDelta, ) -> Result<TimeDelta, <T as TryOffset<Tdb, Tai>>::Error>

Source§

impl<T> TryOffset<Tdb, Tcb> for T
where T: OffsetProvider,

Source§

type Error = Infallible

Source§

fn try_offset( &self, _origin: Tdb, _target: Tcb, delta: TimeDelta, ) -> Result<TimeDelta, <T as TryOffset<Tdb, Tcb>>::Error>

Source§

impl<T> TryOffset<Tdb, Tcg> for T
where T: OffsetProvider,

Source§

type Error = Infallible

Source§

fn try_offset( &self, origin: Tdb, target: Tcg, delta: TimeDelta, ) -> Result<TimeDelta, <T as TryOffset<Tdb, Tcg>>::Error>

Source§

impl<T> TryOffset<Tdb, Tdb> for T
where T: OffsetProvider,

Source§

type Error = Infallible

Source§

fn try_offset( &self, _origin: Tdb, _target: Tdb, _delta: TimeDelta, ) -> Result<TimeDelta, <T as TryOffset<Tdb, Tdb>>::Error>

Source§

impl<T> TryOffset<Tdb, Tt> for T
where T: OffsetProvider,

Source§

type Error = Infallible

Source§

fn try_offset( &self, _origin: Tdb, _target: Tt, delta: TimeDelta, ) -> Result<TimeDelta, <T as TryOffset<Tdb, Tt>>::Error>

Source§

impl<T> TryOffset<Tdb, Ut1> for T
where T: OffsetProvider,

Source§

type Error = <T as OffsetProvider>::Error

Source§

fn try_offset( &self, _origin: Tdb, _target: Ut1, delta: TimeDelta, ) -> Result<TimeDelta, <T as TryOffset<Tdb, Ut1>>::Error>

Source§

impl<T> TryOffset<Tt, DynTimeScale> for T
where T: OffsetProvider,

Source§

type Error = <T as OffsetProvider>::Error

Source§

fn try_offset( &self, origin: Tt, target: DynTimeScale, delta: TimeDelta, ) -> Result<TimeDelta, <T as TryOffset<Tt, DynTimeScale>>::Error>

Source§

impl<T> TryOffset<Tt, Tai> for T
where T: OffsetProvider,

Source§

type Error = Infallible

Source§

fn try_offset( &self, _origin: Tt, _target: Tai, _delta: TimeDelta, ) -> Result<TimeDelta, <T as TryOffset<Tt, Tai>>::Error>

Source§

impl<T> TryOffset<Tt, Tcb> for T
where T: OffsetProvider,

Source§

type Error = Infallible

Source§

fn try_offset( &self, origin: Tt, target: Tcb, delta: TimeDelta, ) -> Result<TimeDelta, <T as TryOffset<Tt, Tcb>>::Error>

Source§

impl<T> TryOffset<Tt, Tcg> for T
where T: OffsetProvider,

Source§

type Error = Infallible

Source§

fn try_offset( &self, _origin: Tt, _target: Tcg, delta: TimeDelta, ) -> Result<TimeDelta, <T as TryOffset<Tt, Tcg>>::Error>

Source§

impl<T> TryOffset<Tt, Tdb> for T
where T: OffsetProvider,

Source§

type Error = Infallible

Source§

fn try_offset( &self, _origin: Tt, _target: Tdb, delta: TimeDelta, ) -> Result<TimeDelta, <T as TryOffset<Tt, Tdb>>::Error>

Source§

impl<T> TryOffset<Tt, Tt> for T
where T: OffsetProvider,

Source§

type Error = Infallible

Source§

fn try_offset( &self, _origin: Tt, _target: Tt, _delta: TimeDelta, ) -> Result<TimeDelta, <T as TryOffset<Tt, Tt>>::Error>

Source§

impl<T> TryOffset<Tt, Ut1> for T
where T: OffsetProvider,

Source§

type Error = <T as OffsetProvider>::Error

Source§

fn try_offset( &self, _origin: Tt, _target: Ut1, delta: TimeDelta, ) -> Result<TimeDelta, <T as TryOffset<Tt, Ut1>>::Error>

Source§

impl<T> TryOffset<Ut1, DynTimeScale> for T
where T: OffsetProvider,

Source§

type Error = <T as OffsetProvider>::Error

Source§

fn try_offset( &self, origin: Ut1, target: DynTimeScale, delta: TimeDelta, ) -> Result<TimeDelta, <T as TryOffset<Ut1, DynTimeScale>>::Error>

Source§

impl<T> TryOffset<Ut1, Tai> for T
where T: OffsetProvider,

Source§

type Error = <T as OffsetProvider>::Error

Source§

fn try_offset( &self, _origin: Ut1, _target: Tai, delta: TimeDelta, ) -> Result<TimeDelta, <T as TryOffset<Ut1, Tai>>::Error>

Source§

impl<T> TryOffset<Ut1, Tcb> for T
where T: OffsetProvider,

Source§

type Error = <T as OffsetProvider>::Error

Source§

fn try_offset( &self, _origin: Ut1, _target: Tcb, delta: TimeDelta, ) -> Result<TimeDelta, <T as TryOffset<Ut1, Tcb>>::Error>

Source§

impl<T> TryOffset<Ut1, Tcg> for T
where T: OffsetProvider,

Source§

type Error = <T as OffsetProvider>::Error

Source§

fn try_offset( &self, _origin: Ut1, _target: Tcg, delta: TimeDelta, ) -> Result<TimeDelta, <T as TryOffset<Ut1, Tcg>>::Error>

Source§

impl<T> TryOffset<Ut1, Tdb> for T
where T: OffsetProvider,

Source§

type Error = <T as OffsetProvider>::Error

Source§

fn try_offset( &self, _origin: Ut1, _target: Tdb, delta: TimeDelta, ) -> Result<TimeDelta, <T as TryOffset<Ut1, Tdb>>::Error>

Source§

impl<T> TryOffset<Ut1, Tt> for T
where T: OffsetProvider,

Source§

type Error = <T as OffsetProvider>::Error

Source§

fn try_offset( &self, _origin: Ut1, _target: Tt, delta: TimeDelta, ) -> Result<TimeDelta, <T as TryOffset<Ut1, Tt>>::Error>

Source§

impl<T> TryOffset<Ut1, Ut1> for T
where T: OffsetProvider,

Source§

type Error = Infallible

Source§

fn try_offset( &self, _origin: Ut1, _target: Ut1, _delta: TimeDelta, ) -> Result<TimeDelta, <T as TryOffset<Ut1, Ut1>>::Error>

Source§

impl<T, U> TryRotation<Cirf, Iau<DynOrigin>, T> for U
where T: TimeScale + Copy, U: RotationProvider<T> + TryOffset<T, Tt> + TryOffset<T, Tdb> + TryOffset<T, Ut1>,

Source§

type Error = RotationError

Source§

fn try_rotation( &self, origin: Cirf, target: Iau<DynOrigin>, time: Time<T>, ) -> Result<Rotation, <U as TryRotation<Cirf, Iau<DynOrigin>, T>>::Error>

Source§

impl<T, U> TryRotation<Cirf, Icrf, T> for U
where T: TimeScale + Copy, U: RotationProvider<T> + TryOffset<T, Tdb>,

Source§

type Error = RotationError

Source§

fn try_rotation( &self, _origin: Cirf, _target: Icrf, time: Time<T>, ) -> Result<Rotation, <U as TryRotation<Cirf, Icrf, T>>::Error>

Source§

impl<T, U> TryRotation<Cirf, Itrf, T> for U
where T: TimeScale + Copy, U: RotationProvider<T> + TryOffset<T, Tt> + TryOffset<T, Tdb> + TryOffset<T, Ut1>,

Source§

type Error = RotationError

Source§

fn try_rotation( &self, origin: Cirf, target: Itrf, time: Time<T>, ) -> Result<Rotation, <U as TryRotation<Cirf, Itrf, T>>::Error>

Source§

impl<T, U> TryRotation<Cirf, J2000, T> for U
where T: TimeScale + Copy, U: RotationProvider<T> + TryOffset<T, Tt> + TryOffset<T, Tdb> + TryOffset<T, Ut1>,

Source§

type Error = RotationError

Source§

fn try_rotation( &self, origin: Cirf, target: J2000, time: Time<T>, ) -> Result<Rotation, <U as TryRotation<Cirf, J2000, T>>::Error>

Source§

impl<T, U> TryRotation<Cirf, Mod<Iers1996>, T> for U
where T: TimeScale + Copy, U: RotationProvider<T> + TryOffset<T, Tt> + TryOffset<T, Tdb> + TryOffset<T, Ut1>,

Source§

type Error = RotationError

Source§

fn try_rotation( &self, origin: Cirf, target: Mod<Iers1996>, time: Time<T>, ) -> Result<Rotation, <U as TryRotation<Cirf, Mod<Iers1996>, T>>::Error>

Source§

impl<T, U> TryRotation<Cirf, Mod<Iers2003>, T> for U
where T: TimeScale + Copy, U: RotationProvider<T> + TryOffset<T, Tt> + TryOffset<T, Tdb> + TryOffset<T, Ut1>,

Source§

type Error = RotationError

Source§

fn try_rotation( &self, origin: Cirf, target: Mod<Iers2003>, time: Time<T>, ) -> Result<Rotation, <U as TryRotation<Cirf, Mod<Iers2003>, T>>::Error>

Source§

impl<T, U> TryRotation<Cirf, Mod<Iers2010>, T> for U
where T: TimeScale + Copy, U: RotationProvider<T> + TryOffset<T, Tt> + TryOffset<T, Tdb> + TryOffset<T, Ut1>,

Source§

type Error = RotationError

Source§

fn try_rotation( &self, origin: Cirf, target: Mod<Iers2010>, time: Time<T>, ) -> Result<Rotation, <U as TryRotation<Cirf, Mod<Iers2010>, T>>::Error>

Source§

impl<T, U> TryRotation<Cirf, Pef<Iers1996>, T> for U
where T: TimeScale + Copy, U: RotationProvider<T> + TryOffset<T, Tt> + TryOffset<T, Tdb> + TryOffset<T, Ut1>,

Source§

type Error = RotationError

Source§

fn try_rotation( &self, origin: Cirf, target: Pef<Iers1996>, time: Time<T>, ) -> Result<Rotation, <U as TryRotation<Cirf, Pef<Iers1996>, T>>::Error>

Source§

impl<T, U> TryRotation<Cirf, Pef<Iers2003>, T> for U
where T: TimeScale + Copy, U: RotationProvider<T> + TryOffset<T, Tt> + TryOffset<T, Tdb> + TryOffset<T, Ut1>,

Source§

type Error = RotationError

Source§

fn try_rotation( &self, origin: Cirf, target: Pef<Iers2003>, time: Time<T>, ) -> Result<Rotation, <U as TryRotation<Cirf, Pef<Iers2003>, T>>::Error>

Source§

impl<T, U> TryRotation<Cirf, Pef<Iers2010>, T> for U
where T: TimeScale + Copy, U: RotationProvider<T> + TryOffset<T, Tt> + TryOffset<T, Tdb> + TryOffset<T, Ut1>,

Source§

type Error = RotationError

Source§

fn try_rotation( &self, origin: Cirf, target: Pef<Iers2010>, time: Time<T>, ) -> Result<Rotation, <U as TryRotation<Cirf, Pef<Iers2010>, T>>::Error>

Source§

impl<T, U> TryRotation<Cirf, Teme, T> for U
where T: TimeScale + Copy, U: RotationProvider<T> + TryOffset<T, Tt> + TryOffset<T, Tdb> + TryOffset<T, Ut1>,

Source§

type Error = RotationError

Source§

fn try_rotation( &self, origin: Cirf, target: Teme, time: Time<T>, ) -> Result<Rotation, <U as TryRotation<Cirf, Teme, T>>::Error>

Source§

impl<T, U> TryRotation<Cirf, Tirf, T> for U
where T: TimeScale + Copy, U: RotationProvider<T> + TryOffset<T, Ut1>,

Source§

type Error = RotationError

Source§

fn try_rotation( &self, _origin: Cirf, _target: Tirf, time: Time<T>, ) -> Result<Rotation, <U as TryRotation<Cirf, Tirf, T>>::Error>

Source§

impl<T, U> TryRotation<Cirf, Tod<Iers1996>, T> for U
where T: TimeScale + Copy, U: RotationProvider<T> + TryOffset<T, Tt> + TryOffset<T, Tdb> + TryOffset<T, Ut1>,

Source§

type Error = RotationError

Source§

fn try_rotation( &self, origin: Cirf, target: Tod<Iers1996>, time: Time<T>, ) -> Result<Rotation, <U as TryRotation<Cirf, Tod<Iers1996>, T>>::Error>

Source§

impl<T, U> TryRotation<Cirf, Tod<Iers2003>, T> for U
where T: TimeScale + Copy, U: RotationProvider<T> + TryOffset<T, Tt> + TryOffset<T, Tdb> + TryOffset<T, Ut1>,

Source§

type Error = RotationError

Source§

fn try_rotation( &self, origin: Cirf, target: Tod<Iers2003>, time: Time<T>, ) -> Result<Rotation, <U as TryRotation<Cirf, Tod<Iers2003>, T>>::Error>

Source§

impl<T, U> TryRotation<Cirf, Tod<Iers2010>, T> for U
where T: TimeScale + Copy, U: RotationProvider<T> + TryOffset<T, Tt> + TryOffset<T, Tdb> + TryOffset<T, Ut1>,

Source§

type Error = RotationError

Source§

fn try_rotation( &self, origin: Cirf, target: Tod<Iers2010>, time: Time<T>, ) -> Result<Rotation, <U as TryRotation<Cirf, Tod<Iers2010>, T>>::Error>

Source§

impl<T, U> TryRotation<DynFrame, DynFrame, T> for U
where T: TimeScale + Copy, U: RotationProvider<T> + TryOffset<T, Tt> + TryOffset<T, Tdb> + TryOffset<T, Ut1>,

Source§

impl<T, U> TryRotation<Iau<DynOrigin>, Cirf, T> for U
where T: TimeScale + Copy, U: RotationProvider<T> + TryOffset<T, Tt> + TryOffset<T, Tdb> + TryOffset<T, Ut1>,

Source§

type Error = RotationError

Source§

fn try_rotation( &self, origin: Iau<DynOrigin>, target: Cirf, time: Time<T>, ) -> Result<Rotation, <U as TryRotation<Iau<DynOrigin>, Cirf, T>>::Error>

Source§

impl<T, U> TryRotation<Iau<DynOrigin>, Itrf, T> for U
where T: TimeScale + Copy, U: RotationProvider<T> + TryOffset<T, Tt> + TryOffset<T, Tdb> + TryOffset<T, Ut1>,

Source§

type Error = RotationError

Source§

fn try_rotation( &self, origin: Iau<DynOrigin>, target: Itrf, time: Time<T>, ) -> Result<Rotation, <U as TryRotation<Iau<DynOrigin>, Itrf, T>>::Error>

Source§

impl<T, U> TryRotation<Iau<DynOrigin>, J2000, T> for U
where T: TimeScale + Copy, U: RotationProvider<T> + TryOffset<T, Tt> + TryOffset<T, Tdb> + TryOffset<T, Ut1>,

Source§

type Error = RotationError

Source§

fn try_rotation( &self, origin: Iau<DynOrigin>, target: J2000, time: Time<T>, ) -> Result<Rotation, <U as TryRotation<Iau<DynOrigin>, J2000, T>>::Error>

Source§

impl<T, U> TryRotation<Iau<DynOrigin>, Mod<Iers1996>, T> for U
where T: TimeScale + Copy, U: RotationProvider<T> + TryOffset<T, Tt> + TryOffset<T, Tdb> + TryOffset<T, Ut1>,

Source§

type Error = RotationError

Source§

fn try_rotation( &self, origin: Iau<DynOrigin>, target: Mod<Iers1996>, time: Time<T>, ) -> Result<Rotation, <U as TryRotation<Iau<DynOrigin>, Mod<Iers1996>, T>>::Error>

Source§

impl<T, U> TryRotation<Iau<DynOrigin>, Mod<Iers2003>, T> for U
where T: TimeScale + Copy, U: RotationProvider<T> + TryOffset<T, Tt> + TryOffset<T, Tdb> + TryOffset<T, Ut1>,

Source§

type Error = RotationError

Source§

fn try_rotation( &self, origin: Iau<DynOrigin>, target: Mod<Iers2003>, time: Time<T>, ) -> Result<Rotation, <U as TryRotation<Iau<DynOrigin>, Mod<Iers2003>, T>>::Error>

Source§

impl<T, U> TryRotation<Iau<DynOrigin>, Mod<Iers2010>, T> for U
where T: TimeScale + Copy, U: RotationProvider<T> + TryOffset<T, Tt> + TryOffset<T, Tdb> + TryOffset<T, Ut1>,

Source§

type Error = RotationError

Source§

fn try_rotation( &self, origin: Iau<DynOrigin>, target: Mod<Iers2010>, time: Time<T>, ) -> Result<Rotation, <U as TryRotation<Iau<DynOrigin>, Mod<Iers2010>, T>>::Error>

Source§

impl<T, U> TryRotation<Iau<DynOrigin>, Pef<Iers1996>, T> for U
where T: TimeScale + Copy, U: RotationProvider<T> + TryOffset<T, Tt> + TryOffset<T, Tdb> + TryOffset<T, Ut1>,

Source§

type Error = RotationError

Source§

fn try_rotation( &self, origin: Iau<DynOrigin>, target: Pef<Iers1996>, time: Time<T>, ) -> Result<Rotation, <U as TryRotation<Iau<DynOrigin>, Pef<Iers1996>, T>>::Error>

Source§

impl<T, U> TryRotation<Iau<DynOrigin>, Pef<Iers2003>, T> for U
where T: TimeScale + Copy, U: RotationProvider<T> + TryOffset<T, Tt> + TryOffset<T, Tdb> + TryOffset<T, Ut1>,

Source§

type Error = RotationError

Source§

fn try_rotation( &self, origin: Iau<DynOrigin>, target: Pef<Iers2003>, time: Time<T>, ) -> Result<Rotation, <U as TryRotation<Iau<DynOrigin>, Pef<Iers2003>, T>>::Error>

Source§

impl<T, U> TryRotation<Iau<DynOrigin>, Pef<Iers2010>, T> for U
where T: TimeScale + Copy, U: RotationProvider<T> + TryOffset<T, Tt> + TryOffset<T, Tdb> + TryOffset<T, Ut1>,

Source§

type Error = RotationError

Source§

fn try_rotation( &self, origin: Iau<DynOrigin>, target: Pef<Iers2010>, time: Time<T>, ) -> Result<Rotation, <U as TryRotation<Iau<DynOrigin>, Pef<Iers2010>, T>>::Error>

Source§

impl<T, U> TryRotation<Iau<DynOrigin>, Teme, T> for U
where T: TimeScale + Copy, U: RotationProvider<T> + TryOffset<T, Tt> + TryOffset<T, Tdb> + TryOffset<T, Ut1>,

Source§

type Error = RotationError

Source§

fn try_rotation( &self, origin: Iau<DynOrigin>, target: Teme, time: Time<T>, ) -> Result<Rotation, <U as TryRotation<Iau<DynOrigin>, Teme, T>>::Error>

Source§

impl<T, U> TryRotation<Iau<DynOrigin>, Tirf, T> for U
where T: TimeScale + Copy, U: RotationProvider<T> + TryOffset<T, Tt> + TryOffset<T, Tdb> + TryOffset<T, Ut1>,

Source§

type Error = RotationError

Source§

fn try_rotation( &self, origin: Iau<DynOrigin>, target: Tirf, time: Time<T>, ) -> Result<Rotation, <U as TryRotation<Iau<DynOrigin>, Tirf, T>>::Error>

Source§

impl<T, U> TryRotation<Iau<DynOrigin>, Tod<Iers1996>, T> for U
where T: TimeScale + Copy, U: RotationProvider<T> + TryOffset<T, Tt> + TryOffset<T, Tdb> + TryOffset<T, Ut1>,

Source§

type Error = RotationError

Source§

fn try_rotation( &self, origin: Iau<DynOrigin>, target: Tod<Iers1996>, time: Time<T>, ) -> Result<Rotation, <U as TryRotation<Iau<DynOrigin>, Tod<Iers1996>, T>>::Error>

Source§

impl<T, U> TryRotation<Iau<DynOrigin>, Tod<Iers2003>, T> for U
where T: TimeScale + Copy, U: RotationProvider<T> + TryOffset<T, Tt> + TryOffset<T, Tdb> + TryOffset<T, Ut1>,

Source§

type Error = RotationError

Source§

fn try_rotation( &self, origin: Iau<DynOrigin>, target: Tod<Iers2003>, time: Time<T>, ) -> Result<Rotation, <U as TryRotation<Iau<DynOrigin>, Tod<Iers2003>, T>>::Error>

Source§

impl<T, U> TryRotation<Iau<DynOrigin>, Tod<Iers2010>, T> for U
where T: TimeScale + Copy, U: RotationProvider<T> + TryOffset<T, Tt> + TryOffset<T, Tdb> + TryOffset<T, Ut1>,

Source§

type Error = RotationError

Source§

fn try_rotation( &self, origin: Iau<DynOrigin>, target: Tod<Iers2010>, time: Time<T>, ) -> Result<Rotation, <U as TryRotation<Iau<DynOrigin>, Tod<Iers2010>, T>>::Error>

Source§

impl<T, R, U> TryRotation<Iau<R>, Icrf, T> for U

Source§

type Error = RotationError

Source§

fn try_rotation( &self, origin: Iau<R>, _target: Icrf, time: Time<T>, ) -> Result<Rotation, <U as TryRotation<Iau<R>, Icrf, T>>::Error>

Source§

impl<T, U> TryRotation<Icrf, Cirf, T> for U
where T: TimeScale + Copy, U: RotationProvider<T> + TryOffset<T, Tdb>,

Source§

type Error = RotationError

Source§

fn try_rotation( &self, _origin: Icrf, _target: Cirf, time: Time<T>, ) -> Result<Rotation, <U as TryRotation<Icrf, Cirf, T>>::Error>

Source§

impl<T, R, U> TryRotation<Icrf, Iau<R>, T> for U

Source§

type Error = RotationError

Source§

fn try_rotation( &self, _origin: Icrf, target: Iau<R>, time: Time<T>, ) -> Result<Rotation, <U as TryRotation<Icrf, Iau<R>, T>>::Error>

Source§

impl<T, U> TryRotation<Icrf, Itrf, T> for U
where T: TimeScale + Copy, U: RotationProvider<T> + TryOffset<T, Tdb> + TryOffset<T, Tt> + TryOffset<T, Ut1>,

Source§

type Error = RotationError

Source§

fn try_rotation( &self, _origin: Icrf, _target: Itrf, time: Time<T>, ) -> Result<Rotation, <U as TryRotation<Icrf, Itrf, T>>::Error>

Source§

impl<T, U> TryRotation<Icrf, J2000, T> for U
where T: TimeScale + Copy, U: RotationProvider<T>,

Source§

type Error = RotationError

Source§

fn try_rotation( &self, _origin: Icrf, _target: J2000, _time: Time<T>, ) -> Result<Rotation, <U as TryRotation<Icrf, J2000, T>>::Error>

Source§

impl<T, U> TryRotation<Icrf, Mod<Iers1996>, T> for U
where T: TimeScale + Copy, U: RotationProvider<T> + TryOffset<T, Tt>,

Source§

type Error = RotationError

Source§

fn try_rotation( &self, _origin: Icrf, _target: Mod<Iers1996>, time: Time<T>, ) -> Result<Rotation, <U as TryRotation<Icrf, Mod<Iers1996>, T>>::Error>

Source§

impl<T, U> TryRotation<Icrf, Mod<Iers2003>, T> for U
where T: TimeScale + Copy, U: RotationProvider<T> + TryOffset<T, Tt>,

Source§

type Error = RotationError

Source§

fn try_rotation( &self, _origin: Icrf, target: Mod<Iers2003>, time: Time<T>, ) -> Result<Rotation, <U as TryRotation<Icrf, Mod<Iers2003>, T>>::Error>

Source§

impl<T, U> TryRotation<Icrf, Mod<Iers2010>, T> for U
where T: TimeScale + Copy, U: RotationProvider<T> + TryOffset<T, Tt>,

Source§

type Error = RotationError

Source§

fn try_rotation( &self, _origin: Icrf, _target: Mod<Iers2010>, time: Time<T>, ) -> Result<Rotation, <U as TryRotation<Icrf, Mod<Iers2010>, T>>::Error>

Source§

impl<T, U> TryRotation<Icrf, Pef<Iers1996>, T> for U
where T: TimeScale + Copy, U: RotationProvider<T> + TryOffset<T, Tt> + TryOffset<T, Tdb> + TryOffset<T, Ut1>,

Source§

type Error = RotationError

Source§

fn try_rotation( &self, origin: Icrf, target: Pef<Iers1996>, time: Time<T>, ) -> Result<Rotation, <U as TryRotation<Icrf, Pef<Iers1996>, T>>::Error>

Source§

impl<T, U> TryRotation<Icrf, Pef<Iers2003>, T> for U
where T: TimeScale + Copy, U: RotationProvider<T> + TryOffset<T, Tt> + TryOffset<T, Tdb> + TryOffset<T, Ut1>,

Source§

type Error = RotationError

Source§

fn try_rotation( &self, origin: Icrf, target: Pef<Iers2003>, time: Time<T>, ) -> Result<Rotation, <U as TryRotation<Icrf, Pef<Iers2003>, T>>::Error>

Source§

impl<T, U> TryRotation<Icrf, Pef<Iers2010>, T> for U
where T: TimeScale + Copy, U: RotationProvider<T> + TryOffset<T, Tt> + TryOffset<T, Tdb> + TryOffset<T, Ut1>,

Source§

type Error = RotationError

Source§

fn try_rotation( &self, origin: Icrf, target: Pef<Iers2010>, time: Time<T>, ) -> Result<Rotation, <U as TryRotation<Icrf, Pef<Iers2010>, T>>::Error>

Source§

impl<T, U> TryRotation<Icrf, Teme, T> for U
where T: TimeScale + Copy, U: RotationProvider<T> + TryOffset<T, Tt> + TryOffset<T, Tdb> + TryOffset<T, Ut1>,

Source§

type Error = RotationError

Source§

fn try_rotation( &self, origin: Icrf, target: Teme, time: Time<T>, ) -> Result<Rotation, <U as TryRotation<Icrf, Teme, T>>::Error>

Source§

impl<T, U> TryRotation<Icrf, Tirf, T> for U
where T: TimeScale + Copy, U: RotationProvider<T> + TryOffset<T, Tt> + TryOffset<T, Tdb> + TryOffset<T, Ut1>,

Source§

type Error = RotationError

Source§

fn try_rotation( &self, origin: Icrf, target: Tirf, time: Time<T>, ) -> Result<Rotation, <U as TryRotation<Icrf, Tirf, T>>::Error>

Source§

impl<T, U> TryRotation<Icrf, Tod<Iers1996>, T> for U
where T: TimeScale + Copy, U: RotationProvider<T> + TryOffset<T, Tt> + TryOffset<T, Tdb> + TryOffset<T, Ut1>,

Source§

type Error = RotationError

Source§

fn try_rotation( &self, origin: Icrf, target: Tod<Iers1996>, time: Time<T>, ) -> Result<Rotation, <U as TryRotation<Icrf, Tod<Iers1996>, T>>::Error>

Source§

impl<T, U> TryRotation<Icrf, Tod<Iers2003>, T> for U
where T: TimeScale + Copy, U: RotationProvider<T> + TryOffset<T, Tt> + TryOffset<T, Tdb> + TryOffset<T, Ut1>,

Source§

type Error = RotationError

Source§

fn try_rotation( &self, origin: Icrf, target: Tod<Iers2003>, time: Time<T>, ) -> Result<Rotation, <U as TryRotation<Icrf, Tod<Iers2003>, T>>::Error>

Source§

impl<T, U> TryRotation<Icrf, Tod<Iers2010>, T> for U
where T: TimeScale + Copy, U: RotationProvider<T> + TryOffset<T, Tt> + TryOffset<T, Tdb> + TryOffset<T, Ut1>,

Source§

type Error = RotationError

Source§

fn try_rotation( &self, origin: Icrf, target: Tod<Iers2010>, time: Time<T>, ) -> Result<Rotation, <U as TryRotation<Icrf, Tod<Iers2010>, T>>::Error>

Source§

impl<T, U> TryRotation<Itrf, Cirf, T> for U
where T: TimeScale + Copy, U: RotationProvider<T> + TryOffset<T, Tt> + TryOffset<T, Tdb> + TryOffset<T, Ut1>,

Source§

type Error = RotationError

Source§

fn try_rotation( &self, origin: Itrf, target: Cirf, time: Time<T>, ) -> Result<Rotation, <U as TryRotation<Itrf, Cirf, T>>::Error>

Source§

impl<T, U> TryRotation<Itrf, Iau<DynOrigin>, T> for U
where T: TimeScale + Copy, U: RotationProvider<T> + TryOffset<T, Tt> + TryOffset<T, Tdb> + TryOffset<T, Ut1>,

Source§

type Error = RotationError

Source§

fn try_rotation( &self, origin: Itrf, target: Iau<DynOrigin>, time: Time<T>, ) -> Result<Rotation, <U as TryRotation<Itrf, Iau<DynOrigin>, T>>::Error>

Source§

impl<T, U> TryRotation<Itrf, Icrf, T> for U
where T: TimeScale + Copy, U: RotationProvider<T> + TryOffset<T, Tdb> + TryOffset<T, Tt> + TryOffset<T, Ut1>,

Source§

type Error = RotationError

Source§

fn try_rotation( &self, _origin: Itrf, _target: Icrf, time: Time<T>, ) -> Result<Rotation, <U as TryRotation<Itrf, Icrf, T>>::Error>

Source§

impl<T, U> TryRotation<Itrf, J2000, T> for U
where T: TimeScale + Copy, U: RotationProvider<T> + TryOffset<T, Tt> + TryOffset<T, Tdb> + TryOffset<T, Ut1>,

Source§

type Error = RotationError

Source§

fn try_rotation( &self, origin: Itrf, target: J2000, time: Time<T>, ) -> Result<Rotation, <U as TryRotation<Itrf, J2000, T>>::Error>

Source§

impl<T, U> TryRotation<Itrf, Mod<Iers1996>, T> for U
where T: TimeScale + Copy, U: RotationProvider<T> + TryOffset<T, Tt> + TryOffset<T, Tdb> + TryOffset<T, Ut1>,

Source§

type Error = RotationError

Source§

fn try_rotation( &self, origin: Itrf, target: Mod<Iers1996>, time: Time<T>, ) -> Result<Rotation, <U as TryRotation<Itrf, Mod<Iers1996>, T>>::Error>

Source§

impl<T, U> TryRotation<Itrf, Mod<Iers2003>, T> for U
where T: TimeScale + Copy, U: RotationProvider<T> + TryOffset<T, Tt> + TryOffset<T, Tdb> + TryOffset<T, Ut1>,

Source§

type Error = RotationError

Source§

fn try_rotation( &self, origin: Itrf, target: Mod<Iers2003>, time: Time<T>, ) -> Result<Rotation, <U as TryRotation<Itrf, Mod<Iers2003>, T>>::Error>

Source§

impl<T, U> TryRotation<Itrf, Mod<Iers2010>, T> for U
where T: TimeScale + Copy, U: RotationProvider<T> + TryOffset<T, Tt> + TryOffset<T, Tdb> + TryOffset<T, Ut1>,

Source§

type Error = RotationError

Source§

fn try_rotation( &self, origin: Itrf, target: Mod<Iers2010>, time: Time<T>, ) -> Result<Rotation, <U as TryRotation<Itrf, Mod<Iers2010>, T>>::Error>

Source§

impl<T, U> TryRotation<Itrf, Pef<Iers1996>, T> for U
where T: TimeScale + Copy, U: RotationProvider<T> + TryOffset<T, Tt>,

Source§

type Error = RotationError

Source§

fn try_rotation( &self, _origin: Itrf, _target: Pef<Iers1996>, time: Time<T>, ) -> Result<Rotation, <U as TryRotation<Itrf, Pef<Iers1996>, T>>::Error>

Source§

impl<T, U> TryRotation<Itrf, Pef<Iers2003>, T> for U
where T: TimeScale + Copy, U: RotationProvider<T> + TryOffset<T, Tt>,

Source§

type Error = RotationError

Source§

fn try_rotation( &self, _origin: Itrf, target: Pef<Iers2003>, time: Time<T>, ) -> Result<Rotation, <U as TryRotation<Itrf, Pef<Iers2003>, T>>::Error>

Source§

impl<T, U> TryRotation<Itrf, Pef<Iers2010>, T> for U
where T: TimeScale + Copy, U: RotationProvider<T> + TryOffset<T, Tt>,

Source§

type Error = RotationError

Source§

fn try_rotation( &self, _origin: Itrf, _target: Pef<Iers2010>, time: Time<T>, ) -> Result<Rotation, <U as TryRotation<Itrf, Pef<Iers2010>, T>>::Error>

Source§

impl<T, U> TryRotation<Itrf, Teme, T> for U
where T: TimeScale + Copy, U: RotationProvider<T> + TryOffset<T, Tt> + TryOffset<T, Tdb> + TryOffset<T, Ut1>,

Source§

type Error = RotationError

Source§

fn try_rotation( &self, origin: Itrf, target: Teme, time: Time<T>, ) -> Result<Rotation, <U as TryRotation<Itrf, Teme, T>>::Error>

Source§

impl<T, U> TryRotation<Itrf, Tirf, T> for U
where T: TimeScale + Copy, U: RotationProvider<T> + TryOffset<T, Tt>,

Source§

type Error = RotationError

Source§

fn try_rotation( &self, _origin: Itrf, _target: Tirf, time: Time<T>, ) -> Result<Rotation, <U as TryRotation<Itrf, Tirf, T>>::Error>

Source§

impl<T, U> TryRotation<Itrf, Tod<Iers1996>, T> for U
where T: TimeScale + Copy, U: RotationProvider<T> + TryOffset<T, Tt> + TryOffset<T, Tdb> + TryOffset<T, Ut1>,

Source§

type Error = RotationError

Source§

fn try_rotation( &self, origin: Itrf, target: Tod<Iers1996>, time: Time<T>, ) -> Result<Rotation, <U as TryRotation<Itrf, Tod<Iers1996>, T>>::Error>

Source§

impl<T, U> TryRotation<Itrf, Tod<Iers2003>, T> for U
where T: TimeScale + Copy, U: RotationProvider<T> + TryOffset<T, Tt> + TryOffset<T, Tdb> + TryOffset<T, Ut1>,

Source§

type Error = RotationError

Source§

fn try_rotation( &self, origin: Itrf, target: Tod<Iers2003>, time: Time<T>, ) -> Result<Rotation, <U as TryRotation<Itrf, Tod<Iers2003>, T>>::Error>

Source§

impl<T, U> TryRotation<Itrf, Tod<Iers2010>, T> for U
where T: TimeScale + Copy, U: RotationProvider<T> + TryOffset<T, Tt> + TryOffset<T, Tdb> + TryOffset<T, Ut1>,

Source§

type Error = RotationError

Source§

fn try_rotation( &self, origin: Itrf, target: Tod<Iers2010>, time: Time<T>, ) -> Result<Rotation, <U as TryRotation<Itrf, Tod<Iers2010>, T>>::Error>

Source§

impl<T, U> TryRotation<J2000, Cirf, T> for U
where T: TimeScale + Copy, U: RotationProvider<T> + TryOffset<T, Tt> + TryOffset<T, Tdb> + TryOffset<T, Ut1>,

Source§

type Error = RotationError

Source§

fn try_rotation( &self, origin: J2000, target: Cirf, time: Time<T>, ) -> Result<Rotation, <U as TryRotation<J2000, Cirf, T>>::Error>

Source§

impl<T, U> TryRotation<J2000, Iau<DynOrigin>, T> for U
where T: TimeScale + Copy, U: RotationProvider<T> + TryOffset<T, Tt> + TryOffset<T, Tdb> + TryOffset<T, Ut1>,

Source§

type Error = RotationError

Source§

fn try_rotation( &self, origin: J2000, target: Iau<DynOrigin>, time: Time<T>, ) -> Result<Rotation, <U as TryRotation<J2000, Iau<DynOrigin>, T>>::Error>

Source§

impl<T, U> TryRotation<J2000, Icrf, T> for U
where T: TimeScale + Copy, U: RotationProvider<T>,

Source§

type Error = RotationError

Source§

fn try_rotation( &self, _origin: J2000, _target: Icrf, _time: Time<T>, ) -> Result<Rotation, <U as TryRotation<J2000, Icrf, T>>::Error>

Source§

impl<T, U> TryRotation<J2000, Itrf, T> for U
where T: TimeScale + Copy, U: RotationProvider<T> + TryOffset<T, Tt> + TryOffset<T, Tdb> + TryOffset<T, Ut1>,

Source§

type Error = RotationError

Source§

fn try_rotation( &self, origin: J2000, target: Itrf, time: Time<T>, ) -> Result<Rotation, <U as TryRotation<J2000, Itrf, T>>::Error>

Source§

impl<T, U> TryRotation<J2000, Mod<Iers1996>, T> for U
where T: TimeScale + Copy, U: RotationProvider<T> + TryOffset<T, Tt>,

Source§

type Error = RotationError

Source§

fn try_rotation( &self, _origin: J2000, _target: Mod<Iers1996>, time: Time<T>, ) -> Result<Rotation, <U as TryRotation<J2000, Mod<Iers1996>, T>>::Error>

Source§

impl<T, U> TryRotation<J2000, Mod<Iers2003>, T> for U
where T: TimeScale + Copy, U: RotationProvider<T> + TryOffset<T, Tt>,

Source§

type Error = RotationError

Source§

fn try_rotation( &self, _origin: J2000, target: Mod<Iers2003>, time: Time<T>, ) -> Result<Rotation, <U as TryRotation<J2000, Mod<Iers2003>, T>>::Error>

Source§

impl<T, U> TryRotation<J2000, Mod<Iers2010>, T> for U
where T: TimeScale + Copy, U: RotationProvider<T> + TryOffset<T, Tt>,

Source§

type Error = RotationError

Source§

fn try_rotation( &self, _origin: J2000, _target: Mod<Iers2010>, time: Time<T>, ) -> Result<Rotation, <U as TryRotation<J2000, Mod<Iers2010>, T>>::Error>

Source§

impl<T, U> TryRotation<J2000, Pef<Iers1996>, T> for U
where T: TimeScale + Copy, U: RotationProvider<T> + TryOffset<T, Tt> + TryOffset<T, Tdb> + TryOffset<T, Ut1>,

Source§

type Error = RotationError

Source§

fn try_rotation( &self, origin: J2000, target: Pef<Iers1996>, time: Time<T>, ) -> Result<Rotation, <U as TryRotation<J2000, Pef<Iers1996>, T>>::Error>

Source§

impl<T, U> TryRotation<J2000, Pef<Iers2003>, T> for U
where T: TimeScale + Copy, U: RotationProvider<T> + TryOffset<T, Tt> + TryOffset<T, Tdb> + TryOffset<T, Ut1>,

Source§

type Error = RotationError

Source§

fn try_rotation( &self, origin: J2000, target: Pef<Iers2003>, time: Time<T>, ) -> Result<Rotation, <U as TryRotation<J2000, Pef<Iers2003>, T>>::Error>

Source§

impl<T, U> TryRotation<J2000, Pef<Iers2010>, T> for U
where T: TimeScale + Copy, U: RotationProvider<T> + TryOffset<T, Tt> + TryOffset<T, Tdb> + TryOffset<T, Ut1>,

Source§

type Error = RotationError

Source§

fn try_rotation( &self, origin: J2000, target: Pef<Iers2010>, time: Time<T>, ) -> Result<Rotation, <U as TryRotation<J2000, Pef<Iers2010>, T>>::Error>

Source§

impl<T, U> TryRotation<J2000, Teme, T> for U
where T: TimeScale + Copy, U: RotationProvider<T> + TryOffset<T, Tt> + TryOffset<T, Tdb> + TryOffset<T, Ut1>,

Source§

type Error = RotationError

Source§

fn try_rotation( &self, origin: J2000, target: Teme, time: Time<T>, ) -> Result<Rotation, <U as TryRotation<J2000, Teme, T>>::Error>

Source§

impl<T, U> TryRotation<J2000, Tirf, T> for U
where T: TimeScale + Copy, U: RotationProvider<T> + TryOffset<T, Tt> + TryOffset<T, Tdb> + TryOffset<T, Ut1>,

Source§

type Error = RotationError

Source§

fn try_rotation( &self, origin: J2000, target: Tirf, time: Time<T>, ) -> Result<Rotation, <U as TryRotation<J2000, Tirf, T>>::Error>

Source§

impl<T, U> TryRotation<J2000, Tod<Iers1996>, T> for U
where T: TimeScale + Copy, U: RotationProvider<T> + TryOffset<T, Tt> + TryOffset<T, Tdb> + TryOffset<T, Ut1>,

Source§

type Error = RotationError

Source§

fn try_rotation( &self, origin: J2000, target: Tod<Iers1996>, time: Time<T>, ) -> Result<Rotation, <U as TryRotation<J2000, Tod<Iers1996>, T>>::Error>

Source§

impl<T, U> TryRotation<J2000, Tod<Iers2003>, T> for U
where T: TimeScale + Copy, U: RotationProvider<T> + TryOffset<T, Tt> + TryOffset<T, Tdb> + TryOffset<T, Ut1>,

Source§

type Error = RotationError

Source§

fn try_rotation( &self, origin: J2000, target: Tod<Iers2003>, time: Time<T>, ) -> Result<Rotation, <U as TryRotation<J2000, Tod<Iers2003>, T>>::Error>

Source§

impl<T, U> TryRotation<J2000, Tod<Iers2010>, T> for U
where T: TimeScale + Copy, U: RotationProvider<T> + TryOffset<T, Tt> + TryOffset<T, Tdb> + TryOffset<T, Ut1>,

Source§

type Error = RotationError

Source§

fn try_rotation( &self, origin: J2000, target: Tod<Iers2010>, time: Time<T>, ) -> Result<Rotation, <U as TryRotation<J2000, Tod<Iers2010>, T>>::Error>

Source§

impl<T, U> TryRotation<Mod<Iers1996>, Cirf, T> for U
where T: TimeScale + Copy, U: RotationProvider<T> + TryOffset<T, Tt> + TryOffset<T, Tdb> + TryOffset<T, Ut1>,

Source§

type Error = RotationError

Source§

fn try_rotation( &self, origin: Mod<Iers1996>, target: Cirf, time: Time<T>, ) -> Result<Rotation, <U as TryRotation<Mod<Iers1996>, Cirf, T>>::Error>

Source§

impl<T, U> TryRotation<Mod<Iers1996>, Iau<DynOrigin>, T> for U
where T: TimeScale + Copy, U: RotationProvider<T> + TryOffset<T, Tt> + TryOffset<T, Tdb> + TryOffset<T, Ut1>,

Source§

type Error = RotationError

Source§

fn try_rotation( &self, origin: Mod<Iers1996>, target: Iau<DynOrigin>, time: Time<T>, ) -> Result<Rotation, <U as TryRotation<Mod<Iers1996>, Iau<DynOrigin>, T>>::Error>

Source§

impl<T, U> TryRotation<Mod<Iers1996>, Icrf, T> for U
where T: TimeScale + Copy, U: RotationProvider<T> + TryOffset<T, Tt>,

Source§

type Error = RotationError

Source§

fn try_rotation( &self, _origin: Mod<Iers1996>, _target: Icrf, time: Time<T>, ) -> Result<Rotation, <U as TryRotation<Mod<Iers1996>, Icrf, T>>::Error>

Source§

impl<T, U> TryRotation<Mod<Iers1996>, Itrf, T> for U
where T: TimeScale + Copy, U: RotationProvider<T> + TryOffset<T, Tt> + TryOffset<T, Tdb> + TryOffset<T, Ut1>,

Source§

type Error = RotationError

Source§

fn try_rotation( &self, origin: Mod<Iers1996>, target: Itrf, time: Time<T>, ) -> Result<Rotation, <U as TryRotation<Mod<Iers1996>, Itrf, T>>::Error>

Source§

impl<T, U> TryRotation<Mod<Iers1996>, J2000, T> for U
where T: TimeScale + Copy, U: RotationProvider<T> + TryOffset<T, Tt>,

Source§

type Error = RotationError

Source§

fn try_rotation( &self, _origin: Mod<Iers1996>, _target: J2000, time: Time<T>, ) -> Result<Rotation, <U as TryRotation<Mod<Iers1996>, J2000, T>>::Error>

Source§

impl<T, U> TryRotation<Mod<Iers1996>, Pef<Iers1996>, T> for U
where T: TimeScale + Copy, U: RotationProvider<T> + TryOffset<T, Tt> + TryOffset<T, Tdb> + TryOffset<T, Ut1>,

Source§

type Error = RotationError

Source§

fn try_rotation( &self, origin: Mod<Iers1996>, target: Pef<Iers1996>, time: Time<T>, ) -> Result<Rotation, <U as TryRotation<Mod<Iers1996>, Pef<Iers1996>, T>>::Error>

Source§

impl<T, U> TryRotation<Mod<Iers1996>, Teme, T> for U
where T: TimeScale + Copy, U: RotationProvider<T> + TryOffset<T, Tt> + TryOffset<T, Tdb> + TryOffset<T, Ut1>,

Source§

type Error = RotationError

Source§

fn try_rotation( &self, origin: Mod<Iers1996>, target: Teme, time: Time<T>, ) -> Result<Rotation, <U as TryRotation<Mod<Iers1996>, Teme, T>>::Error>

Source§

impl<T, U> TryRotation<Mod<Iers1996>, Tirf, T> for U
where T: TimeScale + Copy, U: RotationProvider<T> + TryOffset<T, Tt> + TryOffset<T, Tdb> + TryOffset<T, Ut1>,

Source§

type Error = RotationError

Source§

fn try_rotation( &self, origin: Mod<Iers1996>, target: Tirf, time: Time<T>, ) -> Result<Rotation, <U as TryRotation<Mod<Iers1996>, Tirf, T>>::Error>

Source§

impl<T, U> TryRotation<Mod<Iers1996>, Tod<Iers1996>, T> for U
where T: TimeScale + Copy, U: RotationProvider<T> + TryOffset<T, Tdb>,

Source§

type Error = RotationError

Source§

fn try_rotation( &self, _origin: Mod<Iers1996>, _target: Tod<Iers1996>, time: Time<T>, ) -> Result<Rotation, <U as TryRotation<Mod<Iers1996>, Tod<Iers1996>, T>>::Error>

Source§

impl<T, U> TryRotation<Mod<Iers2003>, Cirf, T> for U
where T: TimeScale + Copy, U: RotationProvider<T> + TryOffset<T, Tt> + TryOffset<T, Tdb> + TryOffset<T, Ut1>,

Source§

type Error = RotationError

Source§

fn try_rotation( &self, origin: Mod<Iers2003>, target: Cirf, time: Time<T>, ) -> Result<Rotation, <U as TryRotation<Mod<Iers2003>, Cirf, T>>::Error>

Source§

impl<T, U> TryRotation<Mod<Iers2003>, Iau<DynOrigin>, T> for U
where T: TimeScale + Copy, U: RotationProvider<T> + TryOffset<T, Tt> + TryOffset<T, Tdb> + TryOffset<T, Ut1>,

Source§

type Error = RotationError

Source§

fn try_rotation( &self, origin: Mod<Iers2003>, target: Iau<DynOrigin>, time: Time<T>, ) -> Result<Rotation, <U as TryRotation<Mod<Iers2003>, Iau<DynOrigin>, T>>::Error>

Source§

impl<T, U> TryRotation<Mod<Iers2003>, Icrf, T> for U
where T: TimeScale + Copy, U: RotationProvider<T> + TryOffset<T, Tt>,

Source§

type Error = RotationError

Source§

fn try_rotation( &self, origin: Mod<Iers2003>, _target: Icrf, time: Time<T>, ) -> Result<Rotation, <U as TryRotation<Mod<Iers2003>, Icrf, T>>::Error>

Source§

impl<T, U> TryRotation<Mod<Iers2003>, Itrf, T> for U
where T: TimeScale + Copy, U: RotationProvider<T> + TryOffset<T, Tt> + TryOffset<T, Tdb> + TryOffset<T, Ut1>,

Source§

type Error = RotationError

Source§

fn try_rotation( &self, origin: Mod<Iers2003>, target: Itrf, time: Time<T>, ) -> Result<Rotation, <U as TryRotation<Mod<Iers2003>, Itrf, T>>::Error>

Source§

impl<T, U> TryRotation<Mod<Iers2003>, J2000, T> for U
where T: TimeScale + Copy, U: RotationProvider<T> + TryOffset<T, Tt>,

Source§

type Error = RotationError

Source§

fn try_rotation( &self, origin: Mod<Iers2003>, _target: J2000, time: Time<T>, ) -> Result<Rotation, <U as TryRotation<Mod<Iers2003>, J2000, T>>::Error>

Source§

impl<T, U> TryRotation<Mod<Iers2003>, Pef<Iers2003>, T> for U
where T: TimeScale + Copy, U: RotationProvider<T> + TryOffset<T, Tt> + TryOffset<T, Tdb> + TryOffset<T, Ut1>,

Source§

type Error = RotationError

Source§

fn try_rotation( &self, origin: Mod<Iers2003>, target: Pef<Iers2003>, time: Time<T>, ) -> Result<Rotation, <U as TryRotation<Mod<Iers2003>, Pef<Iers2003>, T>>::Error>

Source§

impl<T, U> TryRotation<Mod<Iers2003>, Teme, T> for U
where T: TimeScale + Copy, U: RotationProvider<T> + TryOffset<T, Tt> + TryOffset<T, Tdb> + TryOffset<T, Ut1>,

Source§

type Error = RotationError

Source§

fn try_rotation( &self, origin: Mod<Iers2003>, target: Teme, time: Time<T>, ) -> Result<Rotation, <U as TryRotation<Mod<Iers2003>, Teme, T>>::Error>

Source§

impl<T, U> TryRotation<Mod<Iers2003>, Tirf, T> for U
where T: TimeScale + Copy, U: RotationProvider<T> + TryOffset<T, Tt> + TryOffset<T, Tdb> + TryOffset<T, Ut1>,

Source§

type Error = RotationError

Source§

fn try_rotation( &self, origin: Mod<Iers2003>, target: Tirf, time: Time<T>, ) -> Result<Rotation, <U as TryRotation<Mod<Iers2003>, Tirf, T>>::Error>

Source§

impl<T, U> TryRotation<Mod<Iers2003>, Tod<Iers2003>, T> for U
where T: TimeScale + Copy, U: RotationProvider<T> + TryOffset<T, Tdb>,

Source§

type Error = RotationError

Source§

fn try_rotation( &self, origin: Mod<Iers2003>, _target: Tod<Iers2003>, time: Time<T>, ) -> Result<Rotation, <U as TryRotation<Mod<Iers2003>, Tod<Iers2003>, T>>::Error>

Source§

impl<T, U> TryRotation<Mod<Iers2010>, Cirf, T> for U
where T: TimeScale + Copy, U: RotationProvider<T> + TryOffset<T, Tt> + TryOffset<T, Tdb> + TryOffset<T, Ut1>,

Source§

type Error = RotationError

Source§

fn try_rotation( &self, origin: Mod<Iers2010>, target: Cirf, time: Time<T>, ) -> Result<Rotation, <U as TryRotation<Mod<Iers2010>, Cirf, T>>::Error>

Source§

impl<T, U> TryRotation<Mod<Iers2010>, Iau<DynOrigin>, T> for U
where T: TimeScale + Copy, U: RotationProvider<T> + TryOffset<T, Tt> + TryOffset<T, Tdb> + TryOffset<T, Ut1>,

Source§

type Error = RotationError

Source§

fn try_rotation( &self, origin: Mod<Iers2010>, target: Iau<DynOrigin>, time: Time<T>, ) -> Result<Rotation, <U as TryRotation<Mod<Iers2010>, Iau<DynOrigin>, T>>::Error>

Source§

impl<T, U> TryRotation<Mod<Iers2010>, Icrf, T> for U
where T: TimeScale + Copy, U: RotationProvider<T> + TryOffset<T, Tt>,

Source§

type Error = RotationError

Source§

fn try_rotation( &self, _origin: Mod<Iers2010>, _target: Icrf, time: Time<T>, ) -> Result<Rotation, <U as TryRotation<Mod<Iers2010>, Icrf, T>>::Error>

Source§

impl<T, U> TryRotation<Mod<Iers2010>, Itrf, T> for U
where T: TimeScale + Copy, U: RotationProvider<T> + TryOffset<T, Tt> + TryOffset<T, Tdb> + TryOffset<T, Ut1>,

Source§

type Error = RotationError

Source§

fn try_rotation( &self, origin: Mod<Iers2010>, target: Itrf, time: Time<T>, ) -> Result<Rotation, <U as TryRotation<Mod<Iers2010>, Itrf, T>>::Error>

Source§

impl<T, U> TryRotation<Mod<Iers2010>, J2000, T> for U
where T: TimeScale + Copy, U: RotationProvider<T> + TryOffset<T, Tt>,

Source§

type Error = RotationError

Source§

fn try_rotation( &self, _origin: Mod<Iers2010>, _target: J2000, time: Time<T>, ) -> Result<Rotation, <U as TryRotation<Mod<Iers2010>, J2000, T>>::Error>

Source§

impl<T, U> TryRotation<Mod<Iers2010>, Pef<Iers2010>, T> for U
where T: TimeScale + Copy, U: RotationProvider<T> + TryOffset<T, Tt> + TryOffset<T, Tdb> + TryOffset<T, Ut1>,

Source§

type Error = RotationError

Source§

fn try_rotation( &self, origin: Mod<Iers2010>, target: Pef<Iers2010>, time: Time<T>, ) -> Result<Rotation, <U as TryRotation<Mod<Iers2010>, Pef<Iers2010>, T>>::Error>

Source§

impl<T, U> TryRotation<Mod<Iers2010>, Teme, T> for U
where T: TimeScale + Copy, U: RotationProvider<T> + TryOffset<T, Tt> + TryOffset<T, Tdb> + TryOffset<T, Ut1>,

Source§

type Error = RotationError

Source§

fn try_rotation( &self, origin: Mod<Iers2010>, target: Teme, time: Time<T>, ) -> Result<Rotation, <U as TryRotation<Mod<Iers2010>, Teme, T>>::Error>

Source§

impl<T, U> TryRotation<Mod<Iers2010>, Tirf, T> for U
where T: TimeScale + Copy, U: RotationProvider<T> + TryOffset<T, Tt> + TryOffset<T, Tdb> + TryOffset<T, Ut1>,

Source§

type Error = RotationError

Source§

fn try_rotation( &self, origin: Mod<Iers2010>, target: Tirf, time: Time<T>, ) -> Result<Rotation, <U as TryRotation<Mod<Iers2010>, Tirf, T>>::Error>

Source§

impl<T, U> TryRotation<Mod<Iers2010>, Tod<Iers2010>, T> for U
where T: TimeScale + Copy, U: RotationProvider<T> + TryOffset<T, Tdb>,

Source§

type Error = RotationError

Source§

fn try_rotation( &self, _origin: Mod<Iers2010>, _target: Tod<Iers2010>, time: Time<T>, ) -> Result<Rotation, <U as TryRotation<Mod<Iers2010>, Tod<Iers2010>, T>>::Error>

Source§

impl<T, U> TryRotation<Pef<Iers1996>, Cirf, T> for U
where T: TimeScale + Copy, U: RotationProvider<T> + TryOffset<T, Tt> + TryOffset<T, Tdb> + TryOffset<T, Ut1>,

Source§

type Error = RotationError

Source§

fn try_rotation( &self, origin: Pef<Iers1996>, target: Cirf, time: Time<T>, ) -> Result<Rotation, <U as TryRotation<Pef<Iers1996>, Cirf, T>>::Error>

Source§

impl<T, U> TryRotation<Pef<Iers1996>, Iau<DynOrigin>, T> for U
where T: TimeScale + Copy, U: RotationProvider<T> + TryOffset<T, Tt> + TryOffset<T, Tdb> + TryOffset<T, Ut1>,

Source§

type Error = RotationError

Source§

fn try_rotation( &self, origin: Pef<Iers1996>, target: Iau<DynOrigin>, time: Time<T>, ) -> Result<Rotation, <U as TryRotation<Pef<Iers1996>, Iau<DynOrigin>, T>>::Error>

Source§

impl<T, U> TryRotation<Pef<Iers1996>, Icrf, T> for U
where T: TimeScale + Copy, U: RotationProvider<T> + TryOffset<T, Tt> + TryOffset<T, Tdb> + TryOffset<T, Ut1>,

Source§

type Error = RotationError

Source§

fn try_rotation( &self, origin: Pef<Iers1996>, target: Icrf, time: Time<T>, ) -> Result<Rotation, <U as TryRotation<Pef<Iers1996>, Icrf, T>>::Error>

Source§

impl<T, U> TryRotation<Pef<Iers1996>, Itrf, T> for U
where T: TimeScale + Copy, U: RotationProvider<T> + TryOffset<T, Tt>,

Source§

type Error = RotationError

Source§

fn try_rotation( &self, _origin: Pef<Iers1996>, _target: Itrf, time: Time<T>, ) -> Result<Rotation, <U as TryRotation<Pef<Iers1996>, Itrf, T>>::Error>

Source§

impl<T, U> TryRotation<Pef<Iers1996>, J2000, T> for U
where T: TimeScale + Copy, U: RotationProvider<T> + TryOffset<T, Tt> + TryOffset<T, Tdb> + TryOffset<T, Ut1>,

Source§

type Error = RotationError

Source§

fn try_rotation( &self, origin: Pef<Iers1996>, target: J2000, time: Time<T>, ) -> Result<Rotation, <U as TryRotation<Pef<Iers1996>, J2000, T>>::Error>

Source§

impl<T, U> TryRotation<Pef<Iers1996>, Mod<Iers1996>, T> for U
where T: TimeScale + Copy, U: RotationProvider<T> + TryOffset<T, Tt> + TryOffset<T, Tdb> + TryOffset<T, Ut1>,

Source§

type Error = RotationError

Source§

fn try_rotation( &self, origin: Pef<Iers1996>, target: Mod<Iers1996>, time: Time<T>, ) -> Result<Rotation, <U as TryRotation<Pef<Iers1996>, Mod<Iers1996>, T>>::Error>

Source§

impl<T, U> TryRotation<Pef<Iers1996>, Teme, T> for U
where T: TimeScale + Copy, U: RotationProvider<T> + TryOffset<T, Tt> + TryOffset<T, Tdb> + TryOffset<T, Ut1>,

Source§

type Error = RotationError

Source§

fn try_rotation( &self, origin: Pef<Iers1996>, target: Teme, time: Time<T>, ) -> Result<Rotation, <U as TryRotation<Pef<Iers1996>, Teme, T>>::Error>

Source§

impl<T, U> TryRotation<Pef<Iers1996>, Tirf, T> for U
where T: TimeScale + Copy, U: RotationProvider<T> + TryOffset<T, Tt> + TryOffset<T, Tdb> + TryOffset<T, Ut1>,

Source§

type Error = RotationError

Source§

fn try_rotation( &self, origin: Pef<Iers1996>, target: Tirf, time: Time<T>, ) -> Result<Rotation, <U as TryRotation<Pef<Iers1996>, Tirf, T>>::Error>

Source§

impl<T, U> TryRotation<Pef<Iers1996>, Tod<Iers1996>, T> for U
where T: TimeScale + Copy, U: RotationProvider<T> + TryOffset<T, Tt> + TryOffset<T, Ut1>,

Source§

type Error = RotationError

Source§

fn try_rotation( &self, _origin: Pef<Iers1996>, _target: Tod<Iers1996>, time: Time<T>, ) -> Result<Rotation, <U as TryRotation<Pef<Iers1996>, Tod<Iers1996>, T>>::Error>

Source§

impl<T, U> TryRotation<Pef<Iers2003>, Cirf, T> for U
where T: TimeScale + Copy, U: RotationProvider<T> + TryOffset<T, Tt> + TryOffset<T, Tdb> + TryOffset<T, Ut1>,

Source§

type Error = RotationError

Source§

fn try_rotation( &self, origin: Pef<Iers2003>, target: Cirf, time: Time<T>, ) -> Result<Rotation, <U as TryRotation<Pef<Iers2003>, Cirf, T>>::Error>

Source§

impl<T, U> TryRotation<Pef<Iers2003>, Iau<DynOrigin>, T> for U
where T: TimeScale + Copy, U: RotationProvider<T> + TryOffset<T, Tt> + TryOffset<T, Tdb> + TryOffset<T, Ut1>,

Source§

type Error = RotationError

Source§

fn try_rotation( &self, origin: Pef<Iers2003>, target: Iau<DynOrigin>, time: Time<T>, ) -> Result<Rotation, <U as TryRotation<Pef<Iers2003>, Iau<DynOrigin>, T>>::Error>

Source§

impl<T, U> TryRotation<Pef<Iers2003>, Icrf, T> for U
where T: TimeScale + Copy, U: RotationProvider<T> + TryOffset<T, Tt> + TryOffset<T, Tdb> + TryOffset<T, Ut1>,

Source§

type Error = RotationError

Source§

fn try_rotation( &self, origin: Pef<Iers2003>, target: Icrf, time: Time<T>, ) -> Result<Rotation, <U as TryRotation<Pef<Iers2003>, Icrf, T>>::Error>

Source§

impl<T, U> TryRotation<Pef<Iers2003>, Itrf, T> for U
where T: TimeScale + Copy, U: RotationProvider<T> + TryOffset<T, Tt>,

Source§

type Error = RotationError

Source§

fn try_rotation( &self, origin: Pef<Iers2003>, _target: Itrf, time: Time<T>, ) -> Result<Rotation, <U as TryRotation<Pef<Iers2003>, Itrf, T>>::Error>

Source§

impl<T, U> TryRotation<Pef<Iers2003>, J2000, T> for U
where T: TimeScale + Copy, U: RotationProvider<T> + TryOffset<T, Tt> + TryOffset<T, Tdb> + TryOffset<T, Ut1>,

Source§

type Error = RotationError

Source§

fn try_rotation( &self, origin: Pef<Iers2003>, target: J2000, time: Time<T>, ) -> Result<Rotation, <U as TryRotation<Pef<Iers2003>, J2000, T>>::Error>

Source§

impl<T, U> TryRotation<Pef<Iers2003>, Mod<Iers2003>, T> for U
where T: TimeScale + Copy, U: RotationProvider<T> + TryOffset<T, Tt> + TryOffset<T, Tdb> + TryOffset<T, Ut1>,

Source§

type Error = RotationError

Source§

fn try_rotation( &self, origin: Pef<Iers2003>, target: Mod<Iers2003>, time: Time<T>, ) -> Result<Rotation, <U as TryRotation<Pef<Iers2003>, Mod<Iers2003>, T>>::Error>

Source§

impl<T, U> TryRotation<Pef<Iers2003>, Teme, T> for U
where T: TimeScale + Copy, U: RotationProvider<T> + TryOffset<T, Tt> + TryOffset<T, Tdb> + TryOffset<T, Ut1>,

Source§

type Error = RotationError

Source§

fn try_rotation( &self, origin: Pef<Iers2003>, target: Teme, time: Time<T>, ) -> Result<Rotation, <U as TryRotation<Pef<Iers2003>, Teme, T>>::Error>

Source§

impl<T, U> TryRotation<Pef<Iers2003>, Tirf, T> for U
where T: TimeScale + Copy, U: RotationProvider<T> + TryOffset<T, Tt> + TryOffset<T, Tdb> + TryOffset<T, Ut1>,

Source§

type Error = RotationError

Source§

fn try_rotation( &self, origin: Pef<Iers2003>, target: Tirf, time: Time<T>, ) -> Result<Rotation, <U as TryRotation<Pef<Iers2003>, Tirf, T>>::Error>

Source§

impl<T, U> TryRotation<Pef<Iers2003>, Tod<Iers2003>, T> for U
where T: TimeScale + Copy, U: RotationProvider<T> + TryOffset<T, Tt> + TryOffset<T, Ut1>,

Source§

type Error = RotationError

Source§

fn try_rotation( &self, origin: Pef<Iers2003>, _target: Tod<Iers2003>, time: Time<T>, ) -> Result<Rotation, <U as TryRotation<Pef<Iers2003>, Tod<Iers2003>, T>>::Error>

Source§

impl<T, U> TryRotation<Pef<Iers2010>, Cirf, T> for U
where T: TimeScale + Copy, U: RotationProvider<T> + TryOffset<T, Tt> + TryOffset<T, Tdb> + TryOffset<T, Ut1>,

Source§

type Error = RotationError

Source§

fn try_rotation( &self, origin: Pef<Iers2010>, target: Cirf, time: Time<T>, ) -> Result<Rotation, <U as TryRotation<Pef<Iers2010>, Cirf, T>>::Error>

Source§

impl<T, U> TryRotation<Pef<Iers2010>, Iau<DynOrigin>, T> for U
where T: TimeScale + Copy, U: RotationProvider<T> + TryOffset<T, Tt> + TryOffset<T, Tdb> + TryOffset<T, Ut1>,

Source§

type Error = RotationError

Source§

fn try_rotation( &self, origin: Pef<Iers2010>, target: Iau<DynOrigin>, time: Time<T>, ) -> Result<Rotation, <U as TryRotation<Pef<Iers2010>, Iau<DynOrigin>, T>>::Error>

Source§

impl<T, U> TryRotation<Pef<Iers2010>, Icrf, T> for U
where T: TimeScale + Copy, U: RotationProvider<T> + TryOffset<T, Tt> + TryOffset<T, Tdb> + TryOffset<T, Ut1>,

Source§

type Error = RotationError

Source§

fn try_rotation( &self, origin: Pef<Iers2010>, target: Icrf, time: Time<T>, ) -> Result<Rotation, <U as TryRotation<Pef<Iers2010>, Icrf, T>>::Error>

Source§

impl<T, U> TryRotation<Pef<Iers2010>, Itrf, T> for U
where T: TimeScale + Copy, U: RotationProvider<T> + TryOffset<T, Tt>,

Source§

type Error = RotationError

Source§

fn try_rotation( &self, _origin: Pef<Iers2010>, _target: Itrf, time: Time<T>, ) -> Result<Rotation, <U as TryRotation<Pef<Iers2010>, Itrf, T>>::Error>

Source§

impl<T, U> TryRotation<Pef<Iers2010>, J2000, T> for U
where T: TimeScale + Copy, U: RotationProvider<T> + TryOffset<T, Tt> + TryOffset<T, Tdb> + TryOffset<T, Ut1>,

Source§

type Error = RotationError

Source§

fn try_rotation( &self, origin: Pef<Iers2010>, target: J2000, time: Time<T>, ) -> Result<Rotation, <U as TryRotation<Pef<Iers2010>, J2000, T>>::Error>

Source§

impl<T, U> TryRotation<Pef<Iers2010>, Mod<Iers2010>, T> for U
where T: TimeScale + Copy, U: RotationProvider<T> + TryOffset<T, Tt> + TryOffset<T, Tdb> + TryOffset<T, Ut1>,

Source§

type Error = RotationError

Source§

fn try_rotation( &self, origin: Pef<Iers2010>, target: Mod<Iers2010>, time: Time<T>, ) -> Result<Rotation, <U as TryRotation<Pef<Iers2010>, Mod<Iers2010>, T>>::Error>

Source§

impl<T, U> TryRotation<Pef<Iers2010>, Teme, T> for U
where T: TimeScale + Copy, U: RotationProvider<T> + TryOffset<T, Tt> + TryOffset<T, Tdb> + TryOffset<T, Ut1>,

Source§

type Error = RotationError

Source§

fn try_rotation( &self, origin: Pef<Iers2010>, target: Teme, time: Time<T>, ) -> Result<Rotation, <U as TryRotation<Pef<Iers2010>, Teme, T>>::Error>

Source§

impl<T, U> TryRotation<Pef<Iers2010>, Tirf, T> for U
where T: TimeScale + Copy, U: RotationProvider<T> + TryOffset<T, Tt> + TryOffset<T, Tdb> + TryOffset<T, Ut1>,

Source§

type Error = RotationError

Source§

fn try_rotation( &self, origin: Pef<Iers2010>, target: Tirf, time: Time<T>, ) -> Result<Rotation, <U as TryRotation<Pef<Iers2010>, Tirf, T>>::Error>

Source§

impl<T, U> TryRotation<Pef<Iers2010>, Tod<Iers2010>, T> for U
where T: TimeScale + Copy, U: RotationProvider<T> + TryOffset<T, Tt> + TryOffset<T, Ut1>,

Source§

type Error = RotationError

Source§

fn try_rotation( &self, _origin: Pef<Iers2010>, _target: Tod<Iers2010>, time: Time<T>, ) -> Result<Rotation, <U as TryRotation<Pef<Iers2010>, Tod<Iers2010>, T>>::Error>

Source§

impl<T, U> TryRotation<Teme, Cirf, T> for U
where T: TimeScale + Copy, U: RotationProvider<T> + TryOffset<T, Tt> + TryOffset<T, Tdb> + TryOffset<T, Ut1>,

Source§

type Error = RotationError

Source§

fn try_rotation( &self, origin: Teme, target: Cirf, time: Time<T>, ) -> Result<Rotation, <U as TryRotation<Teme, Cirf, T>>::Error>

Source§

impl<T, U> TryRotation<Teme, Iau<DynOrigin>, T> for U
where T: TimeScale + Copy, U: RotationProvider<T> + TryOffset<T, Tt> + TryOffset<T, Tdb> + TryOffset<T, Ut1>,

Source§

type Error = RotationError

Source§

fn try_rotation( &self, origin: Teme, target: Iau<DynOrigin>, time: Time<T>, ) -> Result<Rotation, <U as TryRotation<Teme, Iau<DynOrigin>, T>>::Error>

Source§

impl<T, U> TryRotation<Teme, Icrf, T> for U
where T: TimeScale + Copy, U: RotationProvider<T> + TryOffset<T, Tt> + TryOffset<T, Tdb> + TryOffset<T, Ut1>,

Source§

type Error = RotationError

Source§

fn try_rotation( &self, origin: Teme, target: Icrf, time: Time<T>, ) -> Result<Rotation, <U as TryRotation<Teme, Icrf, T>>::Error>

Source§

impl<T, U> TryRotation<Teme, Itrf, T> for U
where T: TimeScale + Copy, U: RotationProvider<T> + TryOffset<T, Tt> + TryOffset<T, Tdb> + TryOffset<T, Ut1>,

Source§

type Error = RotationError

Source§

fn try_rotation( &self, origin: Teme, target: Itrf, time: Time<T>, ) -> Result<Rotation, <U as TryRotation<Teme, Itrf, T>>::Error>

Source§

impl<T, U> TryRotation<Teme, J2000, T> for U
where T: TimeScale + Copy, U: RotationProvider<T> + TryOffset<T, Tt> + TryOffset<T, Tdb> + TryOffset<T, Ut1>,

Source§

type Error = RotationError

Source§

fn try_rotation( &self, origin: Teme, target: J2000, time: Time<T>, ) -> Result<Rotation, <U as TryRotation<Teme, J2000, T>>::Error>

Source§

impl<T, U> TryRotation<Teme, Mod<Iers1996>, T> for U
where T: TimeScale + Copy, U: RotationProvider<T> + TryOffset<T, Tt> + TryOffset<T, Tdb> + TryOffset<T, Ut1>,

Source§

type Error = RotationError

Source§

fn try_rotation( &self, origin: Teme, target: Mod<Iers1996>, time: Time<T>, ) -> Result<Rotation, <U as TryRotation<Teme, Mod<Iers1996>, T>>::Error>

Source§

impl<T, U> TryRotation<Teme, Mod<Iers2003>, T> for U
where T: TimeScale + Copy, U: RotationProvider<T> + TryOffset<T, Tt> + TryOffset<T, Tdb> + TryOffset<T, Ut1>,

Source§

type Error = RotationError

Source§

fn try_rotation( &self, origin: Teme, target: Mod<Iers2003>, time: Time<T>, ) -> Result<Rotation, <U as TryRotation<Teme, Mod<Iers2003>, T>>::Error>

Source§

impl<T, U> TryRotation<Teme, Mod<Iers2010>, T> for U
where T: TimeScale + Copy, U: RotationProvider<T> + TryOffset<T, Tt> + TryOffset<T, Tdb> + TryOffset<T, Ut1>,

Source§

type Error = RotationError

Source§

fn try_rotation( &self, origin: Teme, target: Mod<Iers2010>, time: Time<T>, ) -> Result<Rotation, <U as TryRotation<Teme, Mod<Iers2010>, T>>::Error>

Source§

impl<T, U> TryRotation<Teme, Pef<Iers1996>, T> for U
where T: TimeScale + Copy, U: RotationProvider<T> + TryOffset<T, Tt> + TryOffset<T, Tdb> + TryOffset<T, Ut1>,

Source§

type Error = RotationError

Source§

fn try_rotation( &self, origin: Teme, target: Pef<Iers1996>, time: Time<T>, ) -> Result<Rotation, <U as TryRotation<Teme, Pef<Iers1996>, T>>::Error>

Source§

impl<T, U> TryRotation<Teme, Pef<Iers2003>, T> for U
where T: TimeScale + Copy, U: RotationProvider<T> + TryOffset<T, Tt> + TryOffset<T, Tdb> + TryOffset<T, Ut1>,

Source§

type Error = RotationError

Source§

fn try_rotation( &self, origin: Teme, target: Pef<Iers2003>, time: Time<T>, ) -> Result<Rotation, <U as TryRotation<Teme, Pef<Iers2003>, T>>::Error>

Source§

impl<T, U> TryRotation<Teme, Pef<Iers2010>, T> for U
where T: TimeScale + Copy, U: RotationProvider<T> + TryOffset<T, Tt> + TryOffset<T, Tdb> + TryOffset<T, Ut1>,

Source§

type Error = RotationError

Source§

fn try_rotation( &self, origin: Teme, target: Pef<Iers2010>, time: Time<T>, ) -> Result<Rotation, <U as TryRotation<Teme, Pef<Iers2010>, T>>::Error>

Source§

impl<T, U> TryRotation<Teme, Tirf, T> for U
where T: TimeScale + Copy, U: RotationProvider<T> + TryOffset<T, Tt> + TryOffset<T, Tdb> + TryOffset<T, Ut1>,

Source§

type Error = RotationError

Source§

fn try_rotation( &self, origin: Teme, target: Tirf, time: Time<T>, ) -> Result<Rotation, <U as TryRotation<Teme, Tirf, T>>::Error>

Source§

impl<T, U> TryRotation<Teme, Tod<Iers1996>, T> for U
where T: TimeScale + Copy, U: RotationProvider<T> + TryOffset<T, Tdb>,

Source§

type Error = RotationError

Source§

fn try_rotation( &self, _origin: Teme, _target: Tod<Iers1996>, time: Time<T>, ) -> Result<Rotation, <U as TryRotation<Teme, Tod<Iers1996>, T>>::Error>

Source§

impl<T, U> TryRotation<Teme, Tod<Iers2003>, T> for U
where T: TimeScale + Copy, U: RotationProvider<T> + TryOffset<T, Tdb>,

Source§

type Error = RotationError

Source§

fn try_rotation( &self, _origin: Teme, _target: Tod<Iers2003>, time: Time<T>, ) -> Result<Rotation, <U as TryRotation<Teme, Tod<Iers2003>, T>>::Error>

Source§

impl<T, U> TryRotation<Teme, Tod<Iers2010>, T> for U
where T: TimeScale + Copy, U: RotationProvider<T> + TryOffset<T, Tdb>,

Source§

type Error = RotationError

Source§

fn try_rotation( &self, _origin: Teme, _target: Tod<Iers2010>, time: Time<T>, ) -> Result<Rotation, <U as TryRotation<Teme, Tod<Iers2010>, T>>::Error>

Source§

impl<T, U> TryRotation<Tirf, Cirf, T> for U
where T: TimeScale + Copy, U: RotationProvider<T> + TryOffset<T, Ut1>,

Source§

type Error = RotationError

Source§

fn try_rotation( &self, _origin: Tirf, _target: Cirf, time: Time<T>, ) -> Result<Rotation, <U as TryRotation<Tirf, Cirf, T>>::Error>

Source§

impl<T, U> TryRotation<Tirf, Iau<DynOrigin>, T> for U
where T: TimeScale + Copy, U: RotationProvider<T> + TryOffset<T, Tt> + TryOffset<T, Tdb> + TryOffset<T, Ut1>,

Source§

type Error = RotationError

Source§

fn try_rotation( &self, origin: Tirf, target: Iau<DynOrigin>, time: Time<T>, ) -> Result<Rotation, <U as TryRotation<Tirf, Iau<DynOrigin>, T>>::Error>

Source§

impl<T, U> TryRotation<Tirf, Icrf, T> for U
where T: TimeScale + Copy, U: RotationProvider<T> + TryOffset<T, Tt> + TryOffset<T, Tdb> + TryOffset<T, Ut1>,

Source§

type Error = RotationError

Source§

fn try_rotation( &self, origin: Tirf, target: Icrf, time: Time<T>, ) -> Result<Rotation, <U as TryRotation<Tirf, Icrf, T>>::Error>

Source§

impl<T, U> TryRotation<Tirf, Itrf, T> for U
where T: TimeScale + Copy, U: RotationProvider<T> + TryOffset<T, Tt>,

Source§

type Error = RotationError

Source§

fn try_rotation( &self, _origin: Tirf, _target: Itrf, time: Time<T>, ) -> Result<Rotation, <U as TryRotation<Tirf, Itrf, T>>::Error>

Source§

impl<T, U> TryRotation<Tirf, J2000, T> for U
where T: TimeScale + Copy, U: RotationProvider<T> + TryOffset<T, Tt> + TryOffset<T, Tdb> + TryOffset<T, Ut1>,

Source§

type Error = RotationError

Source§

fn try_rotation( &self, origin: Tirf, target: J2000, time: Time<T>, ) -> Result<Rotation, <U as TryRotation<Tirf, J2000, T>>::Error>

Source§

impl<T, U> TryRotation<Tirf, Mod<Iers1996>, T> for U
where T: TimeScale + Copy, U: RotationProvider<T> + TryOffset<T, Tt> + TryOffset<T, Tdb> + TryOffset<T, Ut1>,

Source§

type Error = RotationError

Source§

fn try_rotation( &self, origin: Tirf, target: Mod<Iers1996>, time: Time<T>, ) -> Result<Rotation, <U as TryRotation<Tirf, Mod<Iers1996>, T>>::Error>

Source§

impl<T, U> TryRotation<Tirf, Mod<Iers2003>, T> for U
where T: TimeScale + Copy, U: RotationProvider<T> + TryOffset<T, Tt> + TryOffset<T, Tdb> + TryOffset<T, Ut1>,

Source§

type Error = RotationError

Source§

fn try_rotation( &self, origin: Tirf, target: Mod<Iers2003>, time: Time<T>, ) -> Result<Rotation, <U as TryRotation<Tirf, Mod<Iers2003>, T>>::Error>

Source§

impl<T, U> TryRotation<Tirf, Mod<Iers2010>, T> for U
where T: TimeScale + Copy, U: RotationProvider<T> + TryOffset<T, Tt> + TryOffset<T, Tdb> + TryOffset<T, Ut1>,

Source§

type Error = RotationError

Source§

fn try_rotation( &self, origin: Tirf, target: Mod<Iers2010>, time: Time<T>, ) -> Result<Rotation, <U as TryRotation<Tirf, Mod<Iers2010>, T>>::Error>

Source§

impl<T, U> TryRotation<Tirf, Pef<Iers1996>, T> for U
where T: TimeScale + Copy, U: RotationProvider<T> + TryOffset<T, Tt> + TryOffset<T, Tdb> + TryOffset<T, Ut1>,

Source§

type Error = RotationError

Source§

fn try_rotation( &self, origin: Tirf, target: Pef<Iers1996>, time: Time<T>, ) -> Result<Rotation, <U as TryRotation<Tirf, Pef<Iers1996>, T>>::Error>

Source§

impl<T, U> TryRotation<Tirf, Pef<Iers2003>, T> for U
where T: TimeScale + Copy, U: RotationProvider<T> + TryOffset<T, Tt> + TryOffset<T, Tdb> + TryOffset<T, Ut1>,

Source§

type Error = RotationError

Source§

fn try_rotation( &self, origin: Tirf, target: Pef<Iers2003>, time: Time<T>, ) -> Result<Rotation, <U as TryRotation<Tirf, Pef<Iers2003>, T>>::Error>

Source§

impl<T, U> TryRotation<Tirf, Pef<Iers2010>, T> for U
where T: TimeScale + Copy, U: RotationProvider<T> + TryOffset<T, Tt> + TryOffset<T, Tdb> + TryOffset<T, Ut1>,

Source§

type Error = RotationError

Source§

fn try_rotation( &self, origin: Tirf, target: Pef<Iers2010>, time: Time<T>, ) -> Result<Rotation, <U as TryRotation<Tirf, Pef<Iers2010>, T>>::Error>

Source§

impl<T, U> TryRotation<Tirf, Teme, T> for U
where T: TimeScale + Copy, U: RotationProvider<T> + TryOffset<T, Tt> + TryOffset<T, Tdb> + TryOffset<T, Ut1>,

Source§

type Error = RotationError

Source§

fn try_rotation( &self, origin: Tirf, target: Teme, time: Time<T>, ) -> Result<Rotation, <U as TryRotation<Tirf, Teme, T>>::Error>

Source§

impl<T, U> TryRotation<Tirf, Tod<Iers1996>, T> for U
where T: TimeScale + Copy, U: RotationProvider<T> + TryOffset<T, Tt> + TryOffset<T, Tdb> + TryOffset<T, Ut1>,

Source§

type Error = RotationError

Source§

fn try_rotation( &self, origin: Tirf, target: Tod<Iers1996>, time: Time<T>, ) -> Result<Rotation, <U as TryRotation<Tirf, Tod<Iers1996>, T>>::Error>

Source§

impl<T, U> TryRotation<Tirf, Tod<Iers2003>, T> for U
where T: TimeScale + Copy, U: RotationProvider<T> + TryOffset<T, Tt> + TryOffset<T, Tdb> + TryOffset<T, Ut1>,

Source§

type Error = RotationError

Source§

fn try_rotation( &self, origin: Tirf, target: Tod<Iers2003>, time: Time<T>, ) -> Result<Rotation, <U as TryRotation<Tirf, Tod<Iers2003>, T>>::Error>

Source§

impl<T, U> TryRotation<Tirf, Tod<Iers2010>, T> for U
where T: TimeScale + Copy, U: RotationProvider<T> + TryOffset<T, Tt> + TryOffset<T, Tdb> + TryOffset<T, Ut1>,

Source§

type Error = RotationError

Source§

fn try_rotation( &self, origin: Tirf, target: Tod<Iers2010>, time: Time<T>, ) -> Result<Rotation, <U as TryRotation<Tirf, Tod<Iers2010>, T>>::Error>

Source§

impl<T, U> TryRotation<Tod<Iers1996>, Cirf, T> for U
where T: TimeScale + Copy, U: RotationProvider<T> + TryOffset<T, Tt> + TryOffset<T, Tdb> + TryOffset<T, Ut1>,

Source§

type Error = RotationError

Source§

fn try_rotation( &self, origin: Tod<Iers1996>, target: Cirf, time: Time<T>, ) -> Result<Rotation, <U as TryRotation<Tod<Iers1996>, Cirf, T>>::Error>

Source§

impl<T, U> TryRotation<Tod<Iers1996>, Iau<DynOrigin>, T> for U
where T: TimeScale + Copy, U: RotationProvider<T> + TryOffset<T, Tt> + TryOffset<T, Tdb> + TryOffset<T, Ut1>,

Source§

type Error = RotationError

Source§

fn try_rotation( &self, origin: Tod<Iers1996>, target: Iau<DynOrigin>, time: Time<T>, ) -> Result<Rotation, <U as TryRotation<Tod<Iers1996>, Iau<DynOrigin>, T>>::Error>

Source§

impl<T, U> TryRotation<Tod<Iers1996>, Icrf, T> for U
where T: TimeScale + Copy, U: RotationProvider<T> + TryOffset<T, Tt> + TryOffset<T, Tdb> + TryOffset<T, Ut1>,

Source§

type Error = RotationError

Source§

fn try_rotation( &self, origin: Tod<Iers1996>, target: Icrf, time: Time<T>, ) -> Result<Rotation, <U as TryRotation<Tod<Iers1996>, Icrf, T>>::Error>

Source§

impl<T, U> TryRotation<Tod<Iers1996>, Itrf, T> for U
where T: TimeScale + Copy, U: RotationProvider<T> + TryOffset<T, Tt> + TryOffset<T, Tdb> + TryOffset<T, Ut1>,

Source§

type Error = RotationError

Source§

fn try_rotation( &self, origin: Tod<Iers1996>, target: Itrf, time: Time<T>, ) -> Result<Rotation, <U as TryRotation<Tod<Iers1996>, Itrf, T>>::Error>

Source§

impl<T, U> TryRotation<Tod<Iers1996>, J2000, T> for U
where T: TimeScale + Copy, U: RotationProvider<T> + TryOffset<T, Tt> + TryOffset<T, Tdb> + TryOffset<T, Ut1>,

Source§

type Error = RotationError

Source§

fn try_rotation( &self, origin: Tod<Iers1996>, target: J2000, time: Time<T>, ) -> Result<Rotation, <U as TryRotation<Tod<Iers1996>, J2000, T>>::Error>

Source§

impl<T, U> TryRotation<Tod<Iers1996>, Mod<Iers1996>, T> for U
where T: TimeScale + Copy, U: RotationProvider<T> + TryOffset<T, Tdb>,

Source§

type Error = RotationError

Source§

fn try_rotation( &self, _origin: Tod<Iers1996>, _target: Mod<Iers1996>, time: Time<T>, ) -> Result<Rotation, <U as TryRotation<Tod<Iers1996>, Mod<Iers1996>, T>>::Error>

Source§

impl<T, U> TryRotation<Tod<Iers1996>, Pef<Iers1996>, T> for U
where T: TimeScale + Copy, U: RotationProvider<T> + TryOffset<T, Tt> + TryOffset<T, Ut1>,

Source§

type Error = RotationError

Source§

fn try_rotation( &self, _origin: Tod<Iers1996>, _target: Pef<Iers1996>, time: Time<T>, ) -> Result<Rotation, <U as TryRotation<Tod<Iers1996>, Pef<Iers1996>, T>>::Error>

Source§

impl<T, U> TryRotation<Tod<Iers1996>, Teme, T> for U
where T: TimeScale + Copy, U: RotationProvider<T> + TryOffset<T, Tdb>,

Source§

type Error = RotationError

Source§

fn try_rotation( &self, _origin: Tod<Iers1996>, _target: Teme, time: Time<T>, ) -> Result<Rotation, <U as TryRotation<Tod<Iers1996>, Teme, T>>::Error>

Source§

impl<T, U> TryRotation<Tod<Iers1996>, Tirf, T> for U
where T: TimeScale + Copy, U: RotationProvider<T> + TryOffset<T, Tt> + TryOffset<T, Tdb> + TryOffset<T, Ut1>,

Source§

type Error = RotationError

Source§

fn try_rotation( &self, origin: Tod<Iers1996>, target: Tirf, time: Time<T>, ) -> Result<Rotation, <U as TryRotation<Tod<Iers1996>, Tirf, T>>::Error>

Source§

impl<T, U> TryRotation<Tod<Iers2003>, Cirf, T> for U
where T: TimeScale + Copy, U: RotationProvider<T> + TryOffset<T, Tt> + TryOffset<T, Tdb> + TryOffset<T, Ut1>,

Source§

type Error = RotationError

Source§

fn try_rotation( &self, origin: Tod<Iers2003>, target: Cirf, time: Time<T>, ) -> Result<Rotation, <U as TryRotation<Tod<Iers2003>, Cirf, T>>::Error>

Source§

impl<T, U> TryRotation<Tod<Iers2003>, Iau<DynOrigin>, T> for U
where T: TimeScale + Copy, U: RotationProvider<T> + TryOffset<T, Tt> + TryOffset<T, Tdb> + TryOffset<T, Ut1>,

Source§

type Error = RotationError

Source§

fn try_rotation( &self, origin: Tod<Iers2003>, target: Iau<DynOrigin>, time: Time<T>, ) -> Result<Rotation, <U as TryRotation<Tod<Iers2003>, Iau<DynOrigin>, T>>::Error>

Source§

impl<T, U> TryRotation<Tod<Iers2003>, Icrf, T> for U
where T: TimeScale + Copy, U: RotationProvider<T> + TryOffset<T, Tt> + TryOffset<T, Tdb> + TryOffset<T, Ut1>,

Source§

type Error = RotationError

Source§

fn try_rotation( &self, origin: Tod<Iers2003>, target: Icrf, time: Time<T>, ) -> Result<Rotation, <U as TryRotation<Tod<Iers2003>, Icrf, T>>::Error>

Source§

impl<T, U> TryRotation<Tod<Iers2003>, Itrf, T> for U
where T: TimeScale + Copy, U: RotationProvider<T> + TryOffset<T, Tt> + TryOffset<T, Tdb> + TryOffset<T, Ut1>,

Source§

type Error = RotationError

Source§

fn try_rotation( &self, origin: Tod<Iers2003>, target: Itrf, time: Time<T>, ) -> Result<Rotation, <U as TryRotation<Tod<Iers2003>, Itrf, T>>::Error>

Source§

impl<T, U> TryRotation<Tod<Iers2003>, J2000, T> for U
where T: TimeScale + Copy, U: RotationProvider<T> + TryOffset<T, Tt> + TryOffset<T, Tdb> + TryOffset<T, Ut1>,

Source§

type Error = RotationError

Source§

fn try_rotation( &self, origin: Tod<Iers2003>, target: J2000, time: Time<T>, ) -> Result<Rotation, <U as TryRotation<Tod<Iers2003>, J2000, T>>::Error>

Source§

impl<T, U> TryRotation<Tod<Iers2003>, Mod<Iers2003>, T> for U
where T: TimeScale + Copy, U: RotationProvider<T> + TryOffset<T, Tdb>,

Source§

type Error = RotationError

Source§

fn try_rotation( &self, origin: Tod<Iers2003>, _target: Mod<Iers2003>, time: Time<T>, ) -> Result<Rotation, <U as TryRotation<Tod<Iers2003>, Mod<Iers2003>, T>>::Error>

Source§

impl<T, U> TryRotation<Tod<Iers2003>, Pef<Iers2003>, T> for U
where T: TimeScale + Copy, U: RotationProvider<T> + TryOffset<T, Tt> + TryOffset<T, Ut1>,

Source§

type Error = RotationError

Source§

fn try_rotation( &self, origin: Tod<Iers2003>, _target: Pef<Iers2003>, time: Time<T>, ) -> Result<Rotation, <U as TryRotation<Tod<Iers2003>, Pef<Iers2003>, T>>::Error>

Source§

impl<T, U> TryRotation<Tod<Iers2003>, Teme, T> for U
where T: TimeScale + Copy, U: RotationProvider<T> + TryOffset<T, Tdb>,

Source§

type Error = RotationError

Source§

fn try_rotation( &self, _origin: Tod<Iers2003>, _target: Teme, time: Time<T>, ) -> Result<Rotation, <U as TryRotation<Tod<Iers2003>, Teme, T>>::Error>

Source§

impl<T, U> TryRotation<Tod<Iers2003>, Tirf, T> for U
where T: TimeScale + Copy, U: RotationProvider<T> + TryOffset<T, Tt> + TryOffset<T, Tdb> + TryOffset<T, Ut1>,

Source§

type Error = RotationError

Source§

fn try_rotation( &self, origin: Tod<Iers2003>, target: Tirf, time: Time<T>, ) -> Result<Rotation, <U as TryRotation<Tod<Iers2003>, Tirf, T>>::Error>

Source§

impl<T, U> TryRotation<Tod<Iers2010>, Cirf, T> for U
where T: TimeScale + Copy, U: RotationProvider<T> + TryOffset<T, Tt> + TryOffset<T, Tdb> + TryOffset<T, Ut1>,

Source§

type Error = RotationError

Source§

fn try_rotation( &self, origin: Tod<Iers2010>, target: Cirf, time: Time<T>, ) -> Result<Rotation, <U as TryRotation<Tod<Iers2010>, Cirf, T>>::Error>

Source§

impl<T, U> TryRotation<Tod<Iers2010>, Iau<DynOrigin>, T> for U
where T: TimeScale + Copy, U: RotationProvider<T> + TryOffset<T, Tt> + TryOffset<T, Tdb> + TryOffset<T, Ut1>,

Source§

type Error = RotationError

Source§

fn try_rotation( &self, origin: Tod<Iers2010>, target: Iau<DynOrigin>, time: Time<T>, ) -> Result<Rotation, <U as TryRotation<Tod<Iers2010>, Iau<DynOrigin>, T>>::Error>

Source§

impl<T, U> TryRotation<Tod<Iers2010>, Icrf, T> for U
where T: TimeScale + Copy, U: RotationProvider<T> + TryOffset<T, Tt> + TryOffset<T, Tdb> + TryOffset<T, Ut1>,

Source§

type Error = RotationError

Source§

fn try_rotation( &self, origin: Tod<Iers2010>, target: Icrf, time: Time<T>, ) -> Result<Rotation, <U as TryRotation<Tod<Iers2010>, Icrf, T>>::Error>

Source§

impl<T, U> TryRotation<Tod<Iers2010>, Itrf, T> for U
where T: TimeScale + Copy, U: RotationProvider<T> + TryOffset<T, Tt> + TryOffset<T, Tdb> + TryOffset<T, Ut1>,

Source§

type Error = RotationError

Source§

fn try_rotation( &self, origin: Tod<Iers2010>, target: Itrf, time: Time<T>, ) -> Result<Rotation, <U as TryRotation<Tod<Iers2010>, Itrf, T>>::Error>

Source§

impl<T, U> TryRotation<Tod<Iers2010>, J2000, T> for U
where T: TimeScale + Copy, U: RotationProvider<T> + TryOffset<T, Tt> + TryOffset<T, Tdb> + TryOffset<T, Ut1>,

Source§

type Error = RotationError

Source§

fn try_rotation( &self, origin: Tod<Iers2010>, target: J2000, time: Time<T>, ) -> Result<Rotation, <U as TryRotation<Tod<Iers2010>, J2000, T>>::Error>

Source§

impl<T, U> TryRotation<Tod<Iers2010>, Mod<Iers2010>, T> for U
where T: TimeScale + Copy, U: RotationProvider<T> + TryOffset<T, Tdb>,

Source§

type Error = RotationError

Source§

fn try_rotation( &self, _origin: Tod<Iers2010>, _target: Mod<Iers2010>, time: Time<T>, ) -> Result<Rotation, <U as TryRotation<Tod<Iers2010>, Mod<Iers2010>, T>>::Error>

Source§

impl<T, U> TryRotation<Tod<Iers2010>, Pef<Iers2010>, T> for U
where T: TimeScale + Copy, U: RotationProvider<T> + TryOffset<T, Tt> + TryOffset<T, Ut1>,

Source§

type Error = RotationError

Source§

fn try_rotation( &self, _origin: Tod<Iers2010>, _target: Pef<Iers2010>, time: Time<T>, ) -> Result<Rotation, <U as TryRotation<Tod<Iers2010>, Pef<Iers2010>, T>>::Error>

Source§

impl<T, U> TryRotation<Tod<Iers2010>, Teme, T> for U
where T: TimeScale + Copy, U: RotationProvider<T> + TryOffset<T, Tdb>,

Source§

type Error = RotationError

Source§

fn try_rotation( &self, _origin: Tod<Iers2010>, _target: Teme, time: Time<T>, ) -> Result<Rotation, <U as TryRotation<Tod<Iers2010>, Teme, T>>::Error>

Source§

impl<T, U> TryRotation<Tod<Iers2010>, Tirf, T> for U
where T: TimeScale + Copy, U: RotationProvider<T> + TryOffset<T, Tt> + TryOffset<T, Tdb> + TryOffset<T, Ut1>,

Source§

type Error = RotationError

Source§

fn try_rotation( &self, origin: Tod<Iers2010>, target: Tirf, time: Time<T>, ) -> Result<Rotation, <U as TryRotation<Tod<Iers2010>, Tirf, T>>::Error>