pub enum GPSFixType {
Unknown = 0,
NoFix = 1,
TwoDim = 2,
ThreeDim = 3,
}
Expand description
GPS Fix Type
Variants§
Trait Implementations§
Source§impl Clone for GPSFixType
impl Clone for GPSFixType
Source§fn clone(&self) -> GPSFixType
fn clone(&self) -> GPSFixType
Returns a copy 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 GPSFixType
impl Debug for GPSFixType
Source§impl Default for GPSFixType
impl Default for GPSFixType
Source§fn default() -> GPSFixType
fn default() -> GPSFixType
Returns the “default value” for a type. Read more
Source§impl From<i32> for GPSFixType
impl From<i32> for GPSFixType
Source§impl PartialEq for GPSFixType
impl PartialEq for GPSFixType
impl Copy for GPSFixType
impl StructuralPartialEq for GPSFixType
Auto Trait Implementations§
impl Freeze for GPSFixType
impl RefUnwindSafe for GPSFixType
impl Send for GPSFixType
impl Sync for GPSFixType
impl Unpin for GPSFixType
impl UnwindSafe for GPSFixType
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