[−]Struct novatel_oem6_api::ReceiverStatusFlags
Receiver status flags
Methods
impl ReceiverStatusFlags
[−]
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 fn empty() -> ReceiverStatusFlags
[−]
pub fn empty() -> ReceiverStatusFlags
Returns an empty set of flags.
pub fn all() -> ReceiverStatusFlags
[−]
pub fn all() -> ReceiverStatusFlags
Returns the set containing all flags.
pub fn bits(&self) -> u32
[−]
pub fn bits(&self) -> u32
Returns the raw value of the flags currently stored.
pub fn from_bits(bits: u32) -> Option<ReceiverStatusFlags>
[−]
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 fn from_bits_truncate(bits: u32) -> ReceiverStatusFlags
[−]
pub fn from_bits_truncate(bits: u32) -> ReceiverStatusFlags
Convert from underlying bit representation, dropping any bits that do not correspond to flags.
pub fn is_empty(&self) -> bool
[−]
pub fn is_empty(&self) -> bool
Returns true
if no flags are currently stored.
pub fn is_all(&self) -> bool
[−]
pub fn is_all(&self) -> bool
Returns true
if all flags are currently set.
pub fn intersects(&self, other: ReceiverStatusFlags) -> bool
[−]
pub fn intersects(&self, other: ReceiverStatusFlags) -> bool
Returns true
if there are flags common to both self
and other
.
pub fn contains(&self, other: ReceiverStatusFlags) -> bool
[−]
pub 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)
[−]
pub fn insert(&mut self, other: ReceiverStatusFlags)
Inserts the specified flags in-place.
pub fn remove(&mut self, other: ReceiverStatusFlags)
[−]
pub fn remove(&mut self, other: ReceiverStatusFlags)
Removes the specified flags in-place.
pub fn toggle(&mut self, other: ReceiverStatusFlags)
[−]
pub fn toggle(&mut self, other: ReceiverStatusFlags)
Toggles the specified flags in-place.
pub fn set(&mut self, other: ReceiverStatusFlags, value: bool)
[−]
pub fn set(&mut self, other: ReceiverStatusFlags, value: bool)
Inserts or removes the specified flags depending on the passed value.
impl ReceiverStatusFlags
[src]
[−]
impl ReceiverStatusFlags
pub fn to_vec(self) -> Vec<String>
[src]
[−]
pub fn to_vec(self) -> Vec<String>
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 Clone for ReceiverStatusFlags
[+]
impl Clone for ReceiverStatusFlags
impl Extend<ReceiverStatusFlags> for ReceiverStatusFlags
[+]
impl Extend<ReceiverStatusFlags> for ReceiverStatusFlags
impl Copy for ReceiverStatusFlags
impl Copy for ReceiverStatusFlags
impl Eq for ReceiverStatusFlags
impl Eq for ReceiverStatusFlags
impl PartialOrd<ReceiverStatusFlags> for ReceiverStatusFlags
[+]
impl PartialOrd<ReceiverStatusFlags> for ReceiverStatusFlags
impl Default for ReceiverStatusFlags
[src]
[+]
impl Default for ReceiverStatusFlags
impl PartialEq<ReceiverStatusFlags> for ReceiverStatusFlags
[+]
impl PartialEq<ReceiverStatusFlags> for ReceiverStatusFlags
impl Ord for ReceiverStatusFlags
[+]
impl Ord for ReceiverStatusFlags
impl Hash for ReceiverStatusFlags
[+]
impl Hash for ReceiverStatusFlags
impl Debug for ReceiverStatusFlags
[+]
impl Debug for ReceiverStatusFlags
impl Sub<ReceiverStatusFlags> for ReceiverStatusFlags
[+]
impl Sub<ReceiverStatusFlags> for ReceiverStatusFlags
impl SubAssign<ReceiverStatusFlags> for ReceiverStatusFlags
[+]
impl SubAssign<ReceiverStatusFlags> for ReceiverStatusFlags
impl Not for ReceiverStatusFlags
[+]
impl Not for ReceiverStatusFlags
impl BitAnd<ReceiverStatusFlags> for ReceiverStatusFlags
[+]
impl BitAnd<ReceiverStatusFlags> for ReceiverStatusFlags
impl BitOr<ReceiverStatusFlags> for ReceiverStatusFlags
[+]
impl BitOr<ReceiverStatusFlags> for ReceiverStatusFlags
impl BitXor<ReceiverStatusFlags> for ReceiverStatusFlags
[+]
impl BitXor<ReceiverStatusFlags> for ReceiverStatusFlags
impl BitAndAssign<ReceiverStatusFlags> for ReceiverStatusFlags
[+]
impl BitAndAssign<ReceiverStatusFlags> for ReceiverStatusFlags
impl BitOrAssign<ReceiverStatusFlags> for ReceiverStatusFlags
[+]
impl BitOrAssign<ReceiverStatusFlags> for ReceiverStatusFlags
impl BitXorAssign<ReceiverStatusFlags> for ReceiverStatusFlags
[+]
impl BitXorAssign<ReceiverStatusFlags> for ReceiverStatusFlags
impl FromIterator<ReceiverStatusFlags> for ReceiverStatusFlags
[+]
impl FromIterator<ReceiverStatusFlags> for ReceiverStatusFlags
impl Octal for ReceiverStatusFlags
[+]
impl Octal for ReceiverStatusFlags
impl Binary for ReceiverStatusFlags
[+]
impl Binary for ReceiverStatusFlags
impl LowerHex for ReceiverStatusFlags
[+]
impl LowerHex for ReceiverStatusFlags
impl UpperHex for ReceiverStatusFlags
[+]
impl UpperHex for ReceiverStatusFlags
Auto Trait Implementations
impl Send for ReceiverStatusFlags
impl Send for ReceiverStatusFlags
impl Sync for ReceiverStatusFlags
impl Sync for ReceiverStatusFlags
Blanket Implementations
impl<T> From for T
[src]
[−]
impl<T> From for T
impl<T, U> Into for T where
U: From<T>,
[src]
[−]
impl<T, U> Into for T where
U: From<T>,
impl<T> ToOwned for T where
T: Clone,
[src]
[−]
impl<T> ToOwned for T where
T: Clone,
type Owned = T
fn to_owned(&self) -> T
[src]
[−]
fn to_owned(&self) -> T
Creates owned data from borrowed data, usually by cloning. Read more
fn clone_into(&self, target: &mut T)
[src]
[−]
fn clone_into(&self, target: &mut T)
🔬 This is a nightly-only experimental API. (toowned_clone_into
)
recently added
Uses borrowed data to replace owned data, usually by cloning. Read more
impl<T, U> TryFrom for T where
T: From<U>,
[src]
[−]
impl<T, U> TryFrom for T where
T: From<U>,
type Error = !
try_from
)The type returned in the event of a conversion error.
fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>
[src]
[−]
fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>
try_from
)Performs the conversion.
impl<T> Borrow for T where
T: ?Sized,
[src]
[−]
impl<T> Borrow for T where
T: ?Sized,
impl<T> BorrowMut for T where
T: ?Sized,
[src]
[−]
impl<T> BorrowMut for T where
T: ?Sized,
fn borrow_mut(&mut self) -> &mut T
[src]
[−]
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
impl<T, U> TryInto for T where
U: TryFrom<T>,
[src]
[−]
impl<T, U> TryInto for T where
U: TryFrom<T>,
type Error = <U as TryFrom<T>>::Error
try_from
)The type returned in the event of a conversion error.
fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>
[src]
[−]
fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>
try_from
)Performs the conversion.
impl<T> Any for T where
T: 'static + ?Sized,
[src]
[−]
impl<T> Any for T where
T: 'static + ?Sized,
fn get_type_id(&self) -> TypeId
[src]
[−]
fn get_type_id(&self) -> TypeId
🔬 This is a nightly-only experimental API. (get_type_id
)
this method will likely be replaced by an associated static
Gets the TypeId
of self
. Read more