pub enum GpsOperatingMode {
Standalone,
Sbas,
Manual,
}Expand description
GPS receiver operating mode.
Variants§
Standalone
Standalone GPS receiver (internal GPS only).
Sbas
SBAS (Satellite Based Augmentation System) enabled. Uses WAAS/EGNOS/MSAS for improved accuracy.
Manual
Manual position entry (GPS receiver off, use stored coordinates).
Trait Implementations§
Source§impl Clone for GpsOperatingMode
impl Clone for GpsOperatingMode
Source§fn clone(&self) -> GpsOperatingMode
fn clone(&self) -> GpsOperatingMode
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for GpsOperatingMode
impl Debug for GpsOperatingMode
Source§impl Hash for GpsOperatingMode
impl Hash for GpsOperatingMode
Source§impl PartialEq for GpsOperatingMode
impl PartialEq for GpsOperatingMode
Source§impl TryFrom<u8> for GpsOperatingMode
impl TryFrom<u8> for GpsOperatingMode
impl Copy for GpsOperatingMode
impl Eq for GpsOperatingMode
impl StructuralPartialEq for GpsOperatingMode
Auto Trait Implementations§
impl Freeze for GpsOperatingMode
impl RefUnwindSafe for GpsOperatingMode
impl Send for GpsOperatingMode
impl Sync for GpsOperatingMode
impl Unpin for GpsOperatingMode
impl UnwindSafe for GpsOperatingMode
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