Struct novatel_oem6_api::ReceiverStatusFlags[]

pub struct ReceiverStatusFlags { /* fields omitted */ }

Receiver status flags

Methods

impl ReceiverStatusFlags

ERROR_PRESENT: ReceiverStatusFlags = ReceiverStatusFlags{bits: 1,}

System has encountered an error

TEMPERATURE_WARNING: ReceiverStatusFlags = ReceiverStatusFlags{bits: 2,}

Temperature warning

VOLTAGE_SUPPLY_WARNING: ReceiverStatusFlags = ReceiverStatusFlags{bits: 4,}

Voltage supply warning

ANTENNA_NOT_POWERED: ReceiverStatusFlags = ReceiverStatusFlags{bits: 8,}

Antenna not powered

LNA_FAILURE: ReceiverStatusFlags = ReceiverStatusFlags{bits: 16,}

LNA failure encountered

ANTENNA_OPEN: ReceiverStatusFlags = ReceiverStatusFlags{bits: 32,}

Antenna open

ANTENNA_SHORTENED: ReceiverStatusFlags = ReceiverStatusFlags{bits: 64,}

Antenna shortened

CPU_OVERLOAD: ReceiverStatusFlags = ReceiverStatusFlags{bits: 128,}

CPU overloaded

COM1_BUFFER_OVERRUN: ReceiverStatusFlags = ReceiverStatusFlags{bits: 256,}

The COM1 buffer has been overrun

COM2_BUFFER_OVERRUN: ReceiverStatusFlags = ReceiverStatusFlags{bits: 512,}

The COM2 buffer has been overrun

COM3_BUFFER_OVERRUN: ReceiverStatusFlags = ReceiverStatusFlags{bits: 1024,}

The COM3 buffer has been overrun

LINK_OVERRUN: ReceiverStatusFlags = ReceiverStatusFlags{bits: 2048,}

Link overrun

AUX_TRANSMIT_OVERRUN: ReceiverStatusFlags = ReceiverStatusFlags{bits: 8192,}

Auxilliary transmit overrun

AGC_OUT_OF_RANGE: ReceiverStatusFlags = ReceiverStatusFlags{bits: 16384,}

AGC out of range

INS_RESET: ReceiverStatusFlags = ReceiverStatusFlags{bits: 65536,}

INS has been reset

GPS_ALMANAC_INVALID: ReceiverStatusFlags = ReceiverStatusFlags{bits: 262144,}

GPS almanac invalid and/or UTC unknown

POSITION_SOLUTION_INVALID: ReceiverStatusFlags = ReceiverStatusFlags{bits: 524288,}

Position solution is invalid

POSITION_FIXED: ReceiverStatusFlags = ReceiverStatusFlags{bits: 1048576,}

A fixed position is in place

CLOCK_STEERING_DISABLED: ReceiverStatusFlags = ReceiverStatusFlags{bits: 2097152,}

Clock steering is disabled

CLOCK_MODEL_INVALID: ReceiverStatusFlags = ReceiverStatusFlags{bits: 4194304,}

The clock model is invalid

EXTERNAL_OSCILLATOR_LOCKED: ReceiverStatusFlags = ReceiverStatusFlags{bits: 8388608,}

The external oscillator is locked

SOFTWARE_RESOURCE_WARNING: ReceiverStatusFlags = ReceiverStatusFlags{bits: 16777216,}

Software resource warning

AUX3_STATUS_EVENT: ReceiverStatusFlags = ReceiverStatusFlags{bits: 536870912,}

An auxilliary 3 status event has occurred

AUX2_STATUS_EVENT: ReceiverStatusFlags = ReceiverStatusFlags{bits: 1073741824,}

An auxilliary 2 status event has occurred

AUX1_STATUS_EVENT: ReceiverStatusFlags = ReceiverStatusFlags{bits: 2147483648,}

An auxilliary 1 status event has occurred

Returns an empty set of flags.

Returns the set containing all flags.

Returns the raw value of the flags currently stored.

Convert from underlying bit representation, unless that representation contains bits that do not correspond to a flag.

Convert from underlying bit representation, dropping any bits that do not correspond to flags.

Returns true if no flags are currently stored.

Returns true if all flags are currently set.

Returns true if there are flags common to both self and other.

Returns true all of the flags in other are contained within self.

Inserts the specified flags in-place.

Removes the specified flags in-place.

Toggles the specified flags in-place.

Inserts or removes the specified flags depending on the passed value.

impl ReceiverStatusFlags
[src]

Important traits for Vec<u8>

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 Copy for ReceiverStatusFlags

impl PartialEq for ReceiverStatusFlags

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

impl Eq for ReceiverStatusFlags

impl Clone for ReceiverStatusFlags

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl PartialOrd for ReceiverStatusFlags

This method returns an ordering between self and other values if one exists. Read more

This method tests less than (for self and other) and is used by the < operator. Read more

This method tests less than or equal to (for self and other) and is used by the <= operator. Read more

This method tests greater than (for self and other) and is used by the > operator. Read more

This method tests greater than or equal to (for self and other) and is used by the >= operator. Read more

impl Ord for ReceiverStatusFlags

This method returns an Ordering between self and other. Read more

Compares and returns the maximum of two values. Read more

Compares and returns the minimum of two values. Read more

impl Hash for ReceiverStatusFlags

Feeds this value into the given [Hasher]. Read more

Feeds a slice of this type into the given [Hasher]. Read more

impl Default for ReceiverStatusFlags
[src]

Returns the "default value" for a type. Read more

impl Debug for ReceiverStatusFlags

Formats the value using the given formatter. Read more

impl Binary for ReceiverStatusFlags

Formats the value using the given formatter.

impl Octal for ReceiverStatusFlags

Formats the value using the given formatter.

impl LowerHex for ReceiverStatusFlags

Formats the value using the given formatter.

impl UpperHex for ReceiverStatusFlags

Formats the value using the given formatter.

impl BitOr for ReceiverStatusFlags

The resulting type after applying the | operator.

Returns the union of the two sets of flags.

impl BitOrAssign for ReceiverStatusFlags

Adds the set of flags.

impl BitXor for ReceiverStatusFlags

The resulting type after applying the ^ operator.

Returns the left flags, but with all the right flags toggled.

impl BitXorAssign for ReceiverStatusFlags

Toggles the set of flags.

impl BitAnd for ReceiverStatusFlags

The resulting type after applying the & operator.

Returns the intersection between the two sets of flags.

impl BitAndAssign for ReceiverStatusFlags

Disables all flags disabled in the set.

impl Sub for ReceiverStatusFlags

The resulting type after applying the - operator.

Returns the set difference of the two sets of flags.

impl SubAssign for ReceiverStatusFlags

Disables all flags enabled in the set.

impl Not for ReceiverStatusFlags

The resulting type after applying the ! operator.

Returns the complement of this set of flags.

impl Extend<ReceiverStatusFlags> for ReceiverStatusFlags

Extends a collection with the contents of an iterator. Read more

impl FromIterator<ReceiverStatusFlags> for ReceiverStatusFlags

Creates a value from an iterator. Read more

Auto Trait Implementations

impl Send for ReceiverStatusFlags

impl Sync for ReceiverStatusFlags