pub enum GpsFix {
NoFix,
Fix2D,
Fix3D,
DGps,
}Expand description
GPS fix quality/type.
Variants§
NoFix
No fix available.
Fix2D
2D fix (latitude and longitude only, no altitude).
Fix3D
3D fix (latitude, longitude, and altitude).
DGps
Differential GPS fix (DGPS/SBAS-corrected position).
Trait Implementations§
impl Copy for GpsFix
impl Eq for GpsFix
impl StructuralPartialEq for GpsFix
Auto Trait Implementations§
impl Freeze for GpsFix
impl RefUnwindSafe for GpsFix
impl Send for GpsFix
impl Sync for GpsFix
impl Unpin for GpsFix
impl UnwindSafe for GpsFix
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