[−]Struct novatel_oem6_api::ReceiverStatusFlags
Receiver status flags
Methods
impl ReceiverStatusFlags
[−]
pub const ERROR_PRESENT: ReceiverStatusFlags
[−][−]
System has encountered an error
pub const TEMPERATURE_WARNING: ReceiverStatusFlags
[−][−]
Temperature warning
pub const VOLTAGE_SUPPLY_WARNING: ReceiverStatusFlags
[−][−]
Voltage supply warning
pub const ANTENNA_NOT_POWERED: ReceiverStatusFlags
[−][−]
Antenna not powered
pub const LNA_FAILURE: ReceiverStatusFlags
[−][−]
LNA failure encountered
pub const ANTENNA_OPEN: ReceiverStatusFlags
[−][−]
Antenna open
pub const ANTENNA_SHORTENED: ReceiverStatusFlags
[−][−]
Antenna shortened
pub const CPU_OVERLOAD: ReceiverStatusFlags
[−][−]
CPU overloaded
pub const COM1_BUFFER_OVERRUN: ReceiverStatusFlags
[−][−]
The COM1 buffer has been overrun
pub const COM2_BUFFER_OVERRUN: ReceiverStatusFlags
[−][−]
The COM2 buffer has been overrun
pub const COM3_BUFFER_OVERRUN: ReceiverStatusFlags
[−][−]
The COM3 buffer has been overrun
pub const LINK_OVERRUN: ReceiverStatusFlags
[−][−]
Link overrun
pub const AUX_TRANSMIT_OVERRUN: ReceiverStatusFlags
[−][−]
Auxilliary transmit overrun
pub const AGC_OUT_OF_RANGE: ReceiverStatusFlags
[−][−]
AGC out of range
pub const INS_RESET: ReceiverStatusFlags
[−][−]
INS has been reset
pub const GPS_ALMANAC_INVALID: ReceiverStatusFlags
[−][−]
GPS almanac invalid and/or UTC unknown
pub const POSITION_SOLUTION_INVALID: ReceiverStatusFlags
[−][−]
Position solution is invalid
pub const POSITION_FIXED: ReceiverStatusFlags
[−][−]
A fixed position is in place
pub const CLOCK_STEERING_DISABLED: ReceiverStatusFlags
[−][−]
Clock steering is disabled
pub const CLOCK_MODEL_INVALID: ReceiverStatusFlags
[−][−]
The clock model is invalid
pub const EXTERNAL_OSCILLATOR_LOCKED: ReceiverStatusFlags
[−][−]
The external oscillator is locked
pub const SOFTWARE_RESOURCE_WARNING: ReceiverStatusFlags
[−][−]
Software resource warning
pub const AUX3_STATUS_EVENT: ReceiverStatusFlags
[−][−]
An auxilliary 3 status event has occurred
pub const AUX2_STATUS_EVENT: ReceiverStatusFlags
[−][−]
An auxilliary 2 status event has occurred
pub const AUX1_STATUS_EVENT: ReceiverStatusFlags
[−][−]
An auxilliary 1 status event has occurred
pub const fn empty() -> ReceiverStatusFlags
[−]
Returns an empty set of flags
pub const fn all() -> ReceiverStatusFlags
[−]
Returns the set containing all flags.
pub const fn bits(&self) -> u32
[−]
Returns the raw value of the flags currently stored.
pub fn from_bits(bits: u32) -> Option<ReceiverStatusFlags>
[−]
Convert from underlying bit representation, unless that representation contains bits that do not correspond to a flag.
pub const fn from_bits_truncate(bits: u32) -> ReceiverStatusFlags
[−]
Convert from underlying bit representation, dropping any bits that do not correspond to flags.
pub const unsafe fn from_bits_unchecked(bits: u32) -> ReceiverStatusFlags
[−]
Convert from underlying bit representation, preserving all bits (even those not corresponding to a defined flag).
pub const fn is_empty(&self) -> bool
[−]
Returns true
if no flags are currently stored.
pub const fn is_all(&self) -> bool
[−]
Returns true
if all flags are currently set.
pub const fn intersects(&self, other: ReceiverStatusFlags) -> bool
[−]
Returns true
if there are flags common to both self
and other
.
pub const fn contains(&self, other: ReceiverStatusFlags) -> bool
[−]
Returns true
all of the flags in other
are contained within self
.
pub fn insert(&mut self, other: ReceiverStatusFlags)
[−]
Inserts the specified flags in-place.
pub fn remove(&mut self, other: ReceiverStatusFlags)
[−]
Removes the specified flags in-place.
pub fn toggle(&mut self, other: ReceiverStatusFlags)
[−]
Toggles the specified flags in-place.
pub fn set(&mut self, other: ReceiverStatusFlags, value: bool)
[−]
Inserts or removes the specified flags depending on the passed value.
impl ReceiverStatusFlags
[src][−]
pub fn to_vec(self) -> Vec<String>
[src][−]
Convert the flags byte into a vector containing the string representations of all flags present.
Examples
use novatel_oem6_api::*; let flags = ReceiverStatusFlags::CLOCK_MODEL_INVALID | ReceiverStatusFlags::POSITION_SOLUTION_INVALID; let conv = flags.to_vec(); assert_eq!(conv, vec!["CLOCK_MODEL_INVALID", "POSITION_SOLUTION_INVALID"]);
Trait Implementations
impl Eq for ReceiverStatusFlags
impl Default for ReceiverStatusFlags
[src][+]
impl Clone for ReceiverStatusFlags
[+]
impl PartialOrd<ReceiverStatusFlags> for ReceiverStatusFlags
[+]
impl Extend<ReceiverStatusFlags> for ReceiverStatusFlags
[+]
impl PartialEq<ReceiverStatusFlags> for ReceiverStatusFlags
[+]
impl Ord for ReceiverStatusFlags
[+]
impl Copy for ReceiverStatusFlags
impl Hash for ReceiverStatusFlags
[+]
impl Sub<ReceiverStatusFlags> for ReceiverStatusFlags
[+]
impl SubAssign<ReceiverStatusFlags> for ReceiverStatusFlags
[+]
impl Not for ReceiverStatusFlags
[+]
impl BitAnd<ReceiverStatusFlags> for ReceiverStatusFlags
[+]
impl BitOr<ReceiverStatusFlags> for ReceiverStatusFlags
[+]
impl BitXor<ReceiverStatusFlags> for ReceiverStatusFlags
[+]
impl BitAndAssign<ReceiverStatusFlags> for ReceiverStatusFlags
[+]
impl BitOrAssign<ReceiverStatusFlags> for ReceiverStatusFlags
[+]
impl BitXorAssign<ReceiverStatusFlags> for ReceiverStatusFlags
[+]
impl Debug for ReceiverStatusFlags
[+]
impl FromIterator<ReceiverStatusFlags> for ReceiverStatusFlags
[+]
impl Octal for ReceiverStatusFlags
[+]
impl Binary for ReceiverStatusFlags
[+]
impl LowerHex for ReceiverStatusFlags
[+]
impl UpperHex for ReceiverStatusFlags
[+]
Auto Trait Implementations
impl Send for ReceiverStatusFlags
impl Unpin for ReceiverStatusFlags
impl Sync for ReceiverStatusFlags
impl UnwindSafe for ReceiverStatusFlags
impl RefUnwindSafe for ReceiverStatusFlags
Blanket Implementations
impl<T> ToOwned for T where
T: Clone,
[src][+]
T: Clone,
impl<T, U> Into<U> for T where
U: From<T>,
[src][+]
U: From<T>,
impl<T> From<T> for T
[src][+]
impl<T, U> TryFrom<U> for T where
U: Into<T>,
[src][+]
U: Into<T>,
impl<T, U> TryInto<U> for T where
U: TryFrom<T>,
[src][+]
U: TryFrom<T>,
impl<T> BorrowMut<T> for T where
T: ?Sized,
[src][+]
T: ?Sized,
impl<T> Borrow<T> for T where
T: ?Sized,
[src][+]
T: ?Sized,
impl<T> Any for T where
T: 'static + ?Sized,
[src][+]
T: 'static + ?Sized,