[]Struct novatel_oem6_api::ReceiverStatusFlags

pub struct ReceiverStatusFlags { /* fields omitted */ }

Receiver status flags

Methods

impl ReceiverStatusFlags

System has encountered an error

Temperature warning

Voltage supply warning

Antenna not powered

LNA failure encountered

Antenna open

Antenna shortened

CPU overloaded

The COM1 buffer has been overrun

The COM2 buffer has been overrun

The COM3 buffer has been overrun

Link overrun

Auxilliary transmit overrun

AGC out of range

INS has been reset

GPS almanac invalid and/or UTC unknown

Position solution is invalid

A fixed position is in place

Clock steering is disabled

The clock model is invalid

The external oscillator is locked

Software resource warning

An auxilliary 3 status event has occurred

An auxilliary 2 status event has occurred

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]

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

impl Default for ReceiverStatusFlags
[src]

impl Ord for ReceiverStatusFlags

Compares and returns the maximum of two values. Read more

Compares and returns the minimum of two values. Read more

impl PartialEq<ReceiverStatusFlags> for ReceiverStatusFlags

impl Clone for ReceiverStatusFlags

Performs copy-assignment from source. Read more

impl Extend<ReceiverStatusFlags> for ReceiverStatusFlags

impl Copy for ReceiverStatusFlags

impl Eq for ReceiverStatusFlags

impl Octal for ReceiverStatusFlags

impl Binary for ReceiverStatusFlags

impl Debug for ReceiverStatusFlags

impl UpperHex for ReceiverStatusFlags

impl LowerHex for ReceiverStatusFlags

impl Hash for ReceiverStatusFlags

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

impl Sub<ReceiverStatusFlags> for ReceiverStatusFlags

The resulting type after applying the - operator.

Returns the set difference of the two sets of flags.

impl SubAssign<ReceiverStatusFlags> 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 BitAnd<ReceiverStatusFlags> for ReceiverStatusFlags

The resulting type after applying the & operator.

Returns the intersection between the two sets of flags.

impl BitOr<ReceiverStatusFlags> for ReceiverStatusFlags

The resulting type after applying the | operator.

Returns the union of the two sets of flags.

impl BitXor<ReceiverStatusFlags> for ReceiverStatusFlags

The resulting type after applying the ^ operator.

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

impl BitAndAssign<ReceiverStatusFlags> for ReceiverStatusFlags

Disables all flags disabled in the set.

impl BitOrAssign<ReceiverStatusFlags> for ReceiverStatusFlags

Adds the set of flags.

impl BitXorAssign<ReceiverStatusFlags> for ReceiverStatusFlags

Toggles the set of flags.

impl FromIterator<ReceiverStatusFlags> for ReceiverStatusFlags

Auto Trait Implementations

impl Send for ReceiverStatusFlags

impl Sync for ReceiverStatusFlags

Blanket Implementations

impl<T, U> Into for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

impl<T> From for T
[src]

impl<T, U> TryFrom for T where
    T: From<U>, 
[src]

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

impl<T> Borrow for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T, U> TryInto for T where
    U: TryFrom<T>, 
[src]

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

impl<T> BorrowMut for T where
    T: ?Sized
[src]