pub struct EopDataRow {
pub mjd: Real,
pub offset: Real,
pub pm_x: Real,
pub pm_y: Real,
}Expand description
A single parsed row of Earth Orientation Parameters.
mjd— Modified Julian Dateoffset— UT1 − UTC (or equivalent) in secondspm_x,pm_y— Polar motion in arcseconds
Fields§
§mjd: Real§offset: Reale.g. UT1-UTC(s)
pm_x: Realpolar motion x (arcsec)
pm_y: Realpolar motion y (arcsec)
Trait Implementations§
Source§impl Clone for EopDataRow
impl Clone for EopDataRow
Source§fn clone(&self) -> EopDataRow
fn clone(&self) -> EopDataRow
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreimpl Copy for EopDataRow
Auto Trait Implementations§
impl Freeze for EopDataRow
impl RefUnwindSafe for EopDataRow
impl Send for EopDataRow
impl Sync for EopDataRow
impl Unpin for EopDataRow
impl UnsafeUnpin for EopDataRow
impl UnwindSafe for EopDataRow
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