pub struct StationCoordinates {Show 14 fields
pub message_number: u16,
pub reference_station_id: u16,
pub itrf_realization_year: u8,
pub gps_indicator: bool,
pub glonass_indicator: bool,
pub galileo_indicator: bool,
pub reference_station_indicator: bool,
pub ecef_x: i64,
pub single_receiver_oscillator: bool,
pub reserved: bool,
pub ecef_y: i64,
pub quarter_cycle_indicator: u8,
pub ecef_z: i64,
pub antenna_height: Option<u16>,
}Expand description
A decoded message 1005 or 1006 antenna reference point.
Fields§
§message_number: u161005 or 1006.
reference_station_id: u16Reference station identifier (DF003).
itrf_realization_year: u8ITRF realization year (DF021, 6 bits).
gps_indicator: boolGPS service supported at this station (DF022).
glonass_indicator: boolGLONASS service supported (DF023).
galileo_indicator: boolGalileo service supported (DF024).
reference_station_indicator: boolReference-station indicator (DF141): physical vs non-physical station.
ecef_x: i64Antenna reference point ECEF X (DF025), raw integer of 0.0001 m steps.
single_receiver_oscillator: boolSingle receiver oscillator indicator (DF142).
reserved: boolReserved field DF001 (1 bit), preserved for exact round-trip.
ecef_y: i64Antenna reference point ECEF Y (DF026), raw integer of 0.0001 m steps.
quarter_cycle_indicator: u8Quarter-cycle indicator (DF364, 2 bits).
ecef_z: i64Antenna reference point ECEF Z (DF027), raw integer of 0.0001 m steps.
antenna_height: Option<u16>Antenna height above the marker (DF028), raw integer of 0.0001 m steps. Present only for message 1006.
Implementations§
Trait Implementations§
Source§impl Clone for StationCoordinates
impl Clone for StationCoordinates
Source§fn clone(&self) -> StationCoordinates
fn clone(&self) -> StationCoordinates
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moreimpl Copy for StationCoordinates
Source§impl Debug for StationCoordinates
impl Debug for StationCoordinates
impl Eq for StationCoordinates
Source§impl PartialEq for StationCoordinates
impl PartialEq for StationCoordinates
Source§fn eq(&self, other: &StationCoordinates) -> bool
fn eq(&self, other: &StationCoordinates) -> bool
self and other values to be equal, and is used by ==.impl StructuralPartialEq for StationCoordinates
Auto Trait Implementations§
impl Freeze for StationCoordinates
impl RefUnwindSafe for StationCoordinates
impl Send for StationCoordinates
impl Sync for StationCoordinates
impl Unpin for StationCoordinates
impl UnsafeUnpin for StationCoordinates
impl UnwindSafe for StationCoordinates
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
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>
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>
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>
self from the equivalent element of its
superset. Read moreSource§fn is_in_subset(&self) -> bool
fn is_in_subset(&self) -> bool
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
self.to_subset but without any property checks. Always succeeds.Source§fn from_subset(element: &SS) -> SP
fn from_subset(element: &SS) -> SP
self to the equivalent element of its superset.