pub struct SsrHeader {
pub epoch_time_s: u32,
pub update_interval: u8,
pub multiple_message: bool,
pub iod_ssr: u8,
pub provider_id: u16,
pub solution_id: u8,
pub satellite_reference_datum: Option<bool>,
pub dispersive_bias_consistency: Option<bool>,
pub mw_consistency: Option<bool>,
pub satellite_count: u8,
}Expand description
Common header for RTCM SSR messages.
Fields§
§epoch_time_s: u32SSR epoch time, seconds of week for GPS and Galileo.
update_interval: u8SSR update interval index.
multiple_message: boolMultiple-message indicator.
iod_ssr: u8IOD SSR.
provider_id: u16SSR provider identifier.
solution_id: u8SSR solution identifier.
satellite_reference_datum: Option<bool>Satellite reference datum bit for orbit and combined messages.
dispersive_bias_consistency: Option<bool>Phase-bias dispersive-bias consistency flag.
mw_consistency: Option<bool>Phase-bias Melbourne-Wubbena consistency flag.
satellite_count: u8Number of satellite records.
Trait Implementations§
impl Eq for SsrHeader
impl StructuralPartialEq for SsrHeader
Auto Trait Implementations§
impl Freeze for SsrHeader
impl RefUnwindSafe for SsrHeader
impl Send for SsrHeader
impl Sync for SsrHeader
impl Unpin for SsrHeader
impl UnsafeUnpin for SsrHeader
impl UnwindSafe for SsrHeader
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.