pub struct Iers2003(pub Iau2000Model);Expand description
IERS 2003 conventions, parameterised by IAU 2000 nutation model.
Tuple Fields§
§0: Iau2000ModelTrait Implementations§
impl Copy for Iers2003
impl Eq for Iers2003
Source§impl From<Iers2003> for ReferenceSystem
impl From<Iers2003> for ReferenceSystem
Source§impl IersSystem for Iers2003
impl IersSystem for Iers2003
Source§fn abbreviation(&self) -> String
fn abbreviation(&self) -> String
Returns a round-trippable tag, encoding the nutation model where it
differs from the default (e.g. “IERS2003B”).
impl StructuralPartialEq for Iers2003
Auto Trait Implementations§
impl Freeze for Iers2003
impl RefUnwindSafe for Iers2003
impl Send for Iers2003
impl Sync for Iers2003
impl Unpin for Iers2003
impl UnsafeUnpin for Iers2003
impl UnwindSafe for Iers2003
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, O, Tg, P> TryRotation<O, Tg, T> for Pwhere
T: ContinuousTimeScale + Copy,
O: ReferenceFrame + RotateToIcrf<T, P, Error = RotationError>,
Tg: ReferenceFrame + RotateToIcrf<T, P, Error = RotationError>,
impl<T, O, Tg, P> TryRotation<O, Tg, T> for Pwhere
T: ContinuousTimeScale + Copy,
O: ReferenceFrame + RotateToIcrf<T, P, Error = RotationError>,
Tg: ReferenceFrame + RotateToIcrf<T, P, Error = RotationError>,
Source§type Error = RotationError
type Error = RotationError
The error type returned when the rotation cannot be computed.
Source§fn try_rotation(
&self,
origin: O,
target: Tg,
time: Time<T>,
) -> Result<Rotation, <P as TryRotation<O, Tg, T>>::Error>
fn try_rotation( &self, origin: O, target: Tg, time: Time<T>, ) -> Result<Rotation, <P as TryRotation<O, Tg, T>>::Error>
Computes the rotation from
origin to target at the given time.