pub struct ArcEpoch {
pub phi1_cycles: Option<f64>,
pub phi2_cycles: Option<f64>,
pub p1_m: Option<f64>,
pub p2_m: Option<f64>,
pub lli1: Option<i64>,
pub lli2: Option<i64>,
pub f1_hz: Option<f64>,
pub f2_hz: Option<f64>,
pub gap_time_s: Option<f64>,
}Expand description
One epoch in a single-satellite carrier-phase arc.
Fields§
§phi1_cycles: Option<f64>Band-1 carrier phase, cycles.
phi2_cycles: Option<f64>Band-2 carrier phase, cycles.
p1_m: Option<f64>Band-1 code pseudorange, meters.
p2_m: Option<f64>Band-2 code pseudorange, meters.
lli1: Option<i64>Band-1 loss-of-lock indicator.
lli2: Option<i64>Band-2 loss-of-lock indicator.
f1_hz: Option<f64>Band-1 carrier frequency, hertz. None means the epoch is skipped.
f2_hz: Option<f64>Band-2 carrier frequency, hertz. None means the epoch is skipped.
gap_time_s: Option<f64>Comparable epoch coordinate in seconds, when the caller can supply one.
Trait Implementations§
impl Copy for ArcEpoch
impl StructuralPartialEq for ArcEpoch
Auto Trait Implementations§
impl Freeze for ArcEpoch
impl RefUnwindSafe for ArcEpoch
impl Send for ArcEpoch
impl Sync for ArcEpoch
impl Unpin for ArcEpoch
impl UnsafeUnpin for ArcEpoch
impl UnwindSafe for ArcEpoch
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> Pointable for T
impl<T> Pointable for T
impl<T> Scalar for T
Source§impl<SS, SP> SupersetOf<SS> for SPwhere
SS: SubsetOf<SP>,
impl<SS, SP> SupersetOf<SS> for SPwhere
SS: SubsetOf<SP>,
Source§fn to_subset(&self) -> Option<SS>
fn to_subset(&self) -> Option<SS>
The inverse inclusion map: attempts to construct
self from the equivalent element of its
superset. Read moreSource§fn is_in_subset(&self) -> bool
fn is_in_subset(&self) -> bool
Checks if
self is actually part of its subset T (and can be converted to it).Source§fn to_subset_unchecked(&self) -> SS
fn to_subset_unchecked(&self) -> SS
Use with care! Same as
self.to_subset but without any property checks. Always succeeds.Source§fn from_subset(element: &SS) -> SP
fn from_subset(element: &SS) -> SP
The inclusion map: converts
self to the equivalent element of its superset.