pub struct Baseline {
pub status: Option<FixStatus>,
pub east: Option<f64>,
pub north: Option<f64>,
pub up: Option<f64>,
pub length: Option<f64>,
pub course: Option<f64>,
pub ratio: Option<f64>,
}Expand description
RTK baseline information
Contains data about the RTK base station and baseline vector. Used for high-precision positioning with RTK corrections.
Reference: baseline_t
Fields§
§status: Option<FixStatus>RTK solution status
east: Option<f64>Baseline East component in meters
north: Option<f64>Baseline North component in meters
up: Option<f64>Baseline Up component in meters
length: Option<f64>Baseline length in meters
course: Option<f64>Baseline course in degrees
ratio: Option<f64>DGPS solution quality ratio
Trait Implementations§
Source§impl<'de> Deserialize<'de> for Baseline
impl<'de> Deserialize<'de> for Baseline
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
impl StructuralPartialEq for Baseline
Auto Trait Implementations§
impl Freeze for Baseline
impl RefUnwindSafe for Baseline
impl Send for Baseline
impl Sync for Baseline
impl Unpin for Baseline
impl UnwindSafe for Baseline
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